Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the testing group in /scripts with 8 updates #472

Merged
merged 1 commit into from
Sep 19, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 1, 2024

Bumps the testing group in /scripts with 8 updates:

Package From To
attrs 23.2.0 24.2.0
certifi 2024.7.4 2024.8.30
deepdiff 7.0.1 8.0.1
idna 3.7 3.8
parse-type 0.6.2 0.6.3
pygithub 2.3.0 2.4.0
pyparsing 3.1.2 3.1.4
pyyaml 6.0.1 6.0.2

Updates attrs from 23.2.0 to 24.2.0

Commits

Updates certifi from 2024.7.4 to 2024.8.30

Commits

Updates deepdiff from 7.0.1 to 8.0.1

Release notes

Sourced from deepdiff's releases.

8.0.0

With the introduction of threshold_to_diff_deeper, the values returned are different than in previous versions of DeepDiff. You can still get the older values by setting threshold_to_diff_deeper=0. However to signify that enough has changed in this release that the users need to update the parameters passed to DeepDiff, we will be doing a major version update.

  • use_enum_value=True makes it so when diffing enum, we use the enum's value. It makes it so comparing an enum to a string or any other value is not reported as a type change.
  • threshold_to_diff_deeper=float is a number between 0 and 1. When comparing dictionaries that have a small intersection of keys, we will report the dictionary as a new_value instead of reporting individual keys changed. If you set it to zero, you get the same results as DeepDiff 7.0.1 and earlier, which means this feature is disabled. The new default is 0.33 which means if less that one third of keys between dictionaries intersect, report it as a new object.
  • Deprecated ordered-set and switched to orderly-set. The ordered-set package was not being maintained anymore and starting Python 3.6, there were better options for sets that ordered. I forked one of the new implementations, modified it, and published it as orderly-set.
  • Added use_log_scale:bool and log_scale_similarity_threshold:float. They can be used to ignore small changes in numbers by comparing their differences in logarithmic space. This is different than ignoring the difference based on significant digits.
  • json serialization of reversed lists.
  • Fix for iterable moved items when iterable_compare_func is used.
  • Pandas and Polars support.
Commits

Updates idna from 3.7 to 3.8

Release notes

Sourced from idna's releases.

v3.8

What's Changed

  • Fix regression where IDNAError exception was not being produced for certain inputs.
  • Add support for Python 3.13, drop support for Python 3.5 as it is no longer testable.
  • Documentation improvements
  • Updates to package testing using Github actions

Thanks to Hugo van Kemenade for contributions to this release.

Full Changelog: kjd/idna@v3.7...v3.8

Changelog

Sourced from idna's changelog.

3.8 (2024-08-23) ++++++++++++++++

  • Fix regression where IDNAError exception was not being produced for certain inputs.
  • Add support for Python 3.13, drop support for Python 3.5 as it is no longer testable.
  • Documentation improvements
  • Updates to package testing using Github actions

Thanks to Hugo van Kemenade for contributions to this release.

Commits
  • 784c6f4 Release v3.8
  • 28c7c9e Typo fix
  • a2b41c3 Pin remainder of Github Actions flagged in code scanning
  • 1f613c5 More Github Action dependency pinning
  • a87e2b6 Update OSSF scorecard to latest version
  • 12d4dd1 Merge pull request #182 from kjd/github-pypi-actions
  • e1a1541 Pin Github Actions dependencies
  • c109d3a Merge branch 'master' into github-pypi-actions
  • f8a8de4 Do not try to build/send packages to TestPyPI for now
  • 613bdde Update regexp to move global flag to start of expression
  • Additional commits viewable in compare view

Updates parse-type from 0.6.2 to 0.6.3

Release notes

Sourced from parse-type's releases.

v0.6.3

UPDATE TO: parse v1.20.2

  • UPDATE: parse_type/parse.py
  • Copy structured test suite to "tests/parse_tests/"
  • Copy structured test suite to "tests/parse_tests_with_parse_type"
  • REMOVE: tests/test_parse.py

OTHERWISE:

  • README: Fix compact display of BADGES (was using multi-line)

DEVELOPMENT:

  • CI: Add support for Python 3.12
Changelog

Sourced from parse-type's changelog.

Version History

Version: 0.7.0 (UNRELEASED)

GOALS:

  • Drop support for Python 2.7
  • Support Python >= 3.7 (probably)
Commits
  • 932c1c1 BUMP-VERSION: 0.6.3 (was: 0.6.2)
  • c9a549a CI: Add release workflows
  • 2195db8 Merge remote-tracking branch 'refs/remotes/origin/main'
  • ff21dfb Merge remote-tracking branch 'refs/remotes/origin/main'
  • d7c77c2 Merge remote-tracking branch 'refs/remotes/origin/main'
  • 0557e54 UPDATE TO: parse v1.20.2
  • 399de81 Create SECURITY.md
  • 260c464 README: Fix compact display of BADGES (was using multi-line)
  • 5c3fcb9 CI: Use "uv" to speed-up Python package installations
  • e88424c CI: Try to use "uv" (part 2)
  • Additional commits viewable in compare view

Updates pygithub from 2.3.0 to 2.4.0

Release notes

Sourced from pygithub's releases.

v2.4.0

New features

Improvements

Bug Fixes

Maintenance

Changelog

Sourced from pygithub's changelog.

Version 2.4.0 (August 26, 2024)

Breaking Changes ^^^^^^^^^^^^^^^^

  • The github.Commit.Commit class provides a files property that used to return a list[github.File.File], which has now been changed to PaginatedList[github.File.File]. This breaks user code that assumes a list:

.. code-block:: python

files = repo.get_commit("7266e812ed2976ea36a4303edecfe5d75522343f").files
no_of_files = len(files)

This will raise a TypeError: object of type 'PaginatedList' has no len(), as the returned PaginatedList does not support the len() method. Use the totalCount property instead:

.. code-block:: python

files = repo.get_commit("7266e812ed2976ea36a4303edecfe5d75522343f").files
no_of_files = files.totalCount
  • Removed support for Python 3.7.

New features ^^^^^^^^^^^^

  • Allow custom authentication (#2987) (32b826fd)

Improvements ^^^^^^^^^^^^

  • Add has_discussions to AuthenticatedUser and Repository classes (#3020) (75224167)
  • Update more SecurityAndAnalysis attributes (#3025) (fa168279)
  • Implement support for re-running only failed workflow jobs. (#2983) (23e87563)
  • Add possibility to mark a thread/notification as done (#2985) (5ba24379)
  • Add "pull_request_review_id" to PullRequestComment object (#3000) (6a59cf82)
  • Add minimize and unminimize functions for IssueComment class (#3005) (09c4f58e)
  • Support Organization/Repository custom properties (#2968) (c5e6b702)
  • Add dict type to add_attribute script (#2977) (2a04f9cc)
  • Allow for deleting and restoring branch associated with PR (#1784) (4ba1e412)
  • Add "archived_at" to Organization object. (#2974) (cc766a6f)
  • Adds Security & Analysis To Repository (#2960) (f22af54d)
  • Add added_by and last_used attributes to RepositoryKey (#2952) (5dffa64d)
  • Add make_latest to GitRelease.update_release (#2888) (60136105)
  • Make Commit.files return PaginatedList (#2939) (fa885f00)

Bug Fixes ^^^^^^^^^

... (truncated)

Commits

Updates pyparsing from 3.1.2 to 3.1.4

Changelog

Sourced from pyparsing's changelog.

Version 3.1.4 - August, 2024

  • Fixed a regression introduced in pyparsing 3.1.3, addition of a type annotation that referenced re.Pattern. Since this type was introduced in Python 3.7, using this type definition broke Python 3.6 installs of pyparsing 3.1.3. PR submitted by Felix Fontein, nice work!

Version 3.1.3 - August, 2024

  • Added new Tag ParserElement, for inserting metadata into the parsed results. This allows a parser to add metadata or annotations to the parsed tokens. The Tag element also accepts an optional value parameter, defaulting to True. See the new tag_metadata.py example in the examples directory.

    Example:

      # add tag indicating mood
      end_punc = "." | ("!" + Tag("enthusiastic")))
      greeting = "Hello" + Word(alphas) + end_punc
    

    result = greeting.parse_string("Hello World.") print(result.dump())

    result = greeting.parse_string("Hello World!") print(result.dump())

    prints:

      ['Hello', 'World', '.']
    

    ['Hello', 'World', '!']

    • enthusiastic: True
  • Added example mongodb_query_expression.py, to convert human-readable infix query expressions (such as a==100 and b>=200) and transform them into the equivalent query argument for the pymongo package ({'$and': [{'a': 100}, {'b': {'$gte': 200}}]}). Supports many equality and inequality operators - see the docstring for the transform_query function for more examples.

  • Fixed issue where PEP8 compatibility names for ParserElement static methods were not themselves defined as staticmethods. When called using a ParserElement instance, this resulted in a TypeError exception. Reported by eylenburg (#548).

  • To address a compatibility issue in RDFLib, added a property setter for the ParserElement.name property, to call ParserElement.set_name.

  • Modified ParserElement.set_name() to accept a None value, to clear the defined name and corresponding error message for a ParserElement.

  • ... (truncated)

    Commits
    • b846e4a Prep for 3.1.4 release
    • 9bd2356 Add Python 3.6 to CI (#566)
    • ee50a19 Add Tag notes to HowToUsePyparsing.rst
    • 3ffc3ef Fix typo
    • e5e97f7 Add mongodb_query_expression.py to examples; updated 0README.html and test_ex...
    • 10cef98 Add Tag ParserElement class
    • cf41d90 Prep for 3.1.3 release
    • d7c163c Some minor code changes in chemical_formulas.py
    • eb56030 Various code cleanups
    • a9e7d47 Added name property setter, and enhanced set_name() to accept a None value to...
    • Additional commits viewable in compare view

    Updates pyyaml from 6.0.1 to 6.0.2

    Release notes

    Sourced from pyyaml's releases.

    6.0.2

    What's Changed

    • Support for Cython 3.x and Python 3.13.

    Full Changelog: yaml/pyyaml@6.0.1...6.0.2

    6.0.2rc1

    • Support for extension build with Cython 3.x
    • Support for Python 3.13
    • Added PyPI wheels for musllinux on aarch64
    Changelog

    Sourced from pyyaml's changelog.

    6.0.2 (2024-08-06)

    Commits

    Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


    Dependabot commands and options

    You can trigger Dependabot actions by commenting on this PR:

    • @dependabot rebase will rebase this PR
    • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
    • @dependabot merge will merge this PR after your CI passes on it
    • @dependabot squash and merge will squash and merge this PR after your CI passes on it
    • @dependabot cancel merge will cancel a previously requested merge and block automerging
    • @dependabot reopen will reopen this PR if it is closed
    • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
    • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
    • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
    • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
    • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
    • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
    • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

    Bumps the testing group in /scripts with 8 updates:
    
    | Package | From | To |
    | --- | --- | --- |
    | [attrs](https://github.com/sponsors/hynek) | `23.2.0` | `24.2.0` |
    | [certifi](https://github.com/certifi/python-certifi) | `2024.7.4` | `2024.8.30` |
    | [deepdiff](https://github.com/seperman/deepdiff) | `7.0.1` | `8.0.1` |
    | [idna](https://github.com/kjd/idna) | `3.7` | `3.8` |
    | [parse-type](https://github.com/jenisys/parse_type) | `0.6.2` | `0.6.3` |
    | [pygithub](https://github.com/pygithub/pygithub) | `2.3.0` | `2.4.0` |
    | [pyparsing](https://github.com/pyparsing/pyparsing) | `3.1.2` | `3.1.4` |
    | [pyyaml](https://github.com/yaml/pyyaml) | `6.0.1` | `6.0.2` |
    
    
    Updates `attrs` from 23.2.0 to 24.2.0
    - [Commits](https://github.com/sponsors/hynek/commits)
    
    Updates `certifi` from 2024.7.4 to 2024.8.30
    - [Commits](certifi/python-certifi@2024.07.04...2024.08.30)
    
    Updates `deepdiff` from 7.0.1 to 8.0.1
    - [Release notes](https://github.com/seperman/deepdiff/releases)
    - [Changelog](https://github.com/seperman/deepdiff/blob/master/docs/changelog.rst)
    - [Commits](https://github.com/seperman/deepdiff/commits)
    
    Updates `idna` from 3.7 to 3.8
    - [Release notes](https://github.com/kjd/idna/releases)
    - [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst)
    - [Commits](kjd/idna@v3.7...v3.8)
    
    Updates `parse-type` from 0.6.2 to 0.6.3
    - [Release notes](https://github.com/jenisys/parse_type/releases)
    - [Changelog](https://github.com/jenisys/parse_type/blob/main/CHANGES.txt)
    - [Commits](jenisys/parse_type@v0.6.2...v0.6.3)
    
    Updates `pygithub` from 2.3.0 to 2.4.0
    - [Release notes](https://github.com/pygithub/pygithub/releases)
    - [Changelog](https://github.com/PyGithub/PyGithub/blob/main/doc/changes.rst)
    - [Commits](PyGithub/PyGithub@v2.3.0...v2.4.0)
    
    Updates `pyparsing` from 3.1.2 to 3.1.4
    - [Release notes](https://github.com/pyparsing/pyparsing/releases)
    - [Changelog](https://github.com/pyparsing/pyparsing/blob/master/CHANGES)
    - [Commits](pyparsing/pyparsing@pyparsing_3.1.2...3.1.4)
    
    Updates `pyyaml` from 6.0.1 to 6.0.2
    - [Release notes](https://github.com/yaml/pyyaml/releases)
    - [Changelog](https://github.com/yaml/pyyaml/blob/main/CHANGES)
    - [Commits](yaml/pyyaml@6.0.1...6.0.2)
    
    ---
    updated-dependencies:
    - dependency-name: attrs
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: testing
    - dependency-name: certifi
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: testing
    - dependency-name: deepdiff
      dependency-type: direct:production
      update-type: version-update:semver-major
      dependency-group: testing
    - dependency-name: idna
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: testing
    - dependency-name: parse-type
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: testing
    - dependency-name: pygithub
      dependency-type: direct:production
      update-type: version-update:semver-minor
      dependency-group: testing
    - dependency-name: pyparsing
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: testing
    - dependency-name: pyyaml
      dependency-type: direct:production
      update-type: version-update:semver-patch
      dependency-group: testing
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    @dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Sep 1, 2024
    @komish komish merged commit a2f9fac into main Sep 19, 2024
    6 checks passed
    @dependabot dependabot bot deleted the dependabot/pip/scripts/testing-9bb65de5a0 branch September 19, 2024 15:38
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
    Labels
    dependencies Pull requests that update a dependency file python Pull requests that update Python code
    Projects
    None yet
    Development

    Successfully merging this pull request may close these issues.

    1 participant