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 python group with 8 updates #485

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Updates the requirements on xclim, pip, black[jupyter], bump-my-version, tox, build, tox-gh and setuptools to permit the latest version.
Updates xclim to 0.53.2

Release notes

Sourced from xclim's releases.

v0.53.2

Contributors to this version: Éric Dupuis (@​coxipi), Pascal Bourgault (@​aulemahal), Trevor James Smith (@​Zeitsperre).

Breaking changes

  • Due to a regression affecting symmetry of polyfit and polyval in xarray, xclim now requires xarray>=2023.11.0,!=2024.10.0 (see: pydata/xarray PR/9691). (PR/1978).

Bug fixes

  • Fixed a bug where the units could be changed before a conversion of the magnitudes could occur. Conversion of units for multivariate DataArray is now properly handled in sdba.TrainAdjust and sdba.Adjust. (PR/1972).
  • Fixed a units formatting bug with indicators that output "delta" Celsius degrees. (PR/1973).
  • Corrected the "choices" of parameter op in the docstring of frost_free_spell_max_length. (PR/1977).
  • Reorganised how Indicator subclasses can be added arguments to the call signature. Injecting such arguments now works. For xclim's subclasses, this bug only affected the indexer argument of indicators subclassing xc.core.indicator.IndexingIndicator. (PR/1981).
  • All-nan slices are now treated correctly in method ExtremeValues. (GH/1982, PR/1983).
Changelog

Sourced from xclim's changelog.

v0.53.2 (2024-10-31)

Contributors to this version: Éric Dupuis (:user:coxipi), Pascal Bourgault (:user:aulemahal), Trevor James Smith (:user:Zeitsperre).

Breaking changes ^^^^^^^^^^^^^^^^

  • Due to a regression affecting symmetry of polyfit and polyval in xarray, xclim now requires xarray>=2023.11.0,!=2024.10.0 (see: pydata/xarray PR/9691 <https://github.com/pydata/xarray/pull/9691>_. (:pull:1978).

Bug fixes ^^^^^^^^^

  • Fixed a bug where the units could be changed before a conversion of the magnitudes could occur. Conversion of units for multivariate DataArray is now properly handled in sdba.TrainAdjust and sdba.Adjust. (:pull:1972).
  • Fixed a units formatting bug with indicators that output "delta" Celsius degrees. (:pull:1973).
  • Corrected the "choices" of parameter op in the docstring of frost_free_spell_max_length. (:pull:1977).
  • Reorganised how Indicator subclasses can added arguments to the call signature. Injecting such arguments now works. For xclim's subclasses, this bug only affected the indexer argument of indicators subclassing xc.core.indicator.IndexingIndicator. (:pull:1981).
  • All-nan slices are now treated correctly in method ExtremeValues. (:issue:1982, :pull:1983).

v0.53.1 (2024-10-21)

Contributors to this version: Trevor James Smith (:user:Zeitsperre).

Internal changes ^^^^^^^^^^^^^^^^

  • Fixed a few missing dependencies in the documentation build recipe that were causing errors in the CI workflow on ReadTheDocs. (:pull:1970).

v0.53.0 (2024-10-17)

Contributors to this version: Adrien Lamarche (:user:LamAdr), Trevor James Smith (:user:Zeitsperre), Éric Dupuis (:user:coxipi), Pascal Bourgault (:user:aulemahal), Sascha Hofmann (:user:saschahofmann), David Huard (:user:huard).

Announcements ^^^^^^^^^^^^^

  • xclim has now adopted the Scientific Python SPEC 0 <https://scientific-python.org/specs/spec-0000/>_ conventions for its suggested dependency support schedule. (:issue:1914, :pull:1915).
  • xclim has dropped support for Python 3.9 and adopted Python 3.10+ code styling conventions. (:issue:1914, :pull:1915).

New indicators ^^^^^^^^^^^^^^

  • New heat_spell_frequency, heat_spell_max_length and heat_spell_total_length : spell length statistics on a bivariate condition that uses the average over a window by default. (:pull:1885, :pull:1778).
  • New hot_spell_max_magnitude : yields the magnitude of the most intensive heat wave. (:pull:1926).
  • New chill_portion and chill_unit : chill portion based on the Dynamic Model and chill unit based on the Utah model indicators. (:issue:1753, :pull:1909).
  • New water_cycle_intensity : yields the sum of precipitation and actual evapotranspiration. (:issue:410, :pull:1947).

New features and enhancements ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  • New generic xclim.indices.generic.spell_mask that returns a mask of which days are part of a spell. Supports multivariate conditions and weights. Used in new generic index xclim.indices.generic.bivariate_spell_length_statistics that extends spell_length_statistics to two variables. (:pull:1885).
  • Indicator parameters can now be assigned a new name, different from the argument name in the compute function. (:pull:1885).
  • Add attribute units_metadata to outputs representing a difference between temperatures. This is needed to disambiguate temperature differences from absolute temperature. Changes affect indicators daily_temperature_range, daily_temperature_range_variability, extreme_temperature_range, interday_diurnal_temperature_range, and all degree-day indicators. Implemented using a new pint2cfattrs function to convert pint units to a dictionary of CF attributes. units2pint is also modified to support units_metadata attributes in DataArrays. Some SDBA properties and measures previously returning units of delta_degC will now return the original input DataArray units accompanied with the units_metadata attribute. (:issue:1822, :pull:1830).
  • xclim.indices.run_length.windowed_max_run_sum accumulates positive values across runs and yields the maximum valued run. (:pull:1926).
  • Helper function xclim.indices.helpers.make_hourly_temperature to estimate hourly temperatures from daily min and max temperatures. (:pull:1909).
  • New global option resample_map_blocks to wrap all resample().map() code inside a xr.map_blocks to lower the number of dask tasks. Uses utility xclim.indices.helpers.resample_map and requires flox to ensure the chunking allows such block-mapping. Defaults to False. (:pull:1848).
  • xclim.indices.run_length.runs_with_holes allows to input a condition that must be met for a run to start and a second condition that must be met for the run to stop. (:pull:1778).
  • New generic compute function xclim.indices.generic.thresholded_events that finds events based on a threshold condition and returns basic stats for each. See also: xclim.indices.run_length.find_events. (:pull:1778).

... (truncated)

Commits

Updates pip from 24.2.0 to 24.3.1

Changelog

Sourced from pip's changelog.

24.3.1 (2024-10-27)

Bug Fixes

  • Allow multiple nested inclusions of the same requirements file again. ([#13046](https://github.com/pypa/pip/issues/13046) <https://github.com/pypa/pip/issues/13046>_)

24.3 (2024-10-27)

Deprecations and Removals

  • Deprecate wheel filenames that are not compliant with :pep:440. ([#12918](https://github.com/pypa/pip/issues/12918) <https://github.com/pypa/pip/issues/12918>_)

Features

  • Detect recursively referencing requirements files and help users identify the source. ([#12653](https://github.com/pypa/pip/issues/12653) <https://github.com/pypa/pip/issues/12653>_)
  • Support for :pep:730 iOS wheels. ([#12961](https://github.com/pypa/pip/issues/12961) <https://github.com/pypa/pip/issues/12961>_)

Bug Fixes

  • Display a better error message when an already installed package has an invalid requirement. ([#12953](https://github.com/pypa/pip/issues/12953) <https://github.com/pypa/pip/issues/12953>_)
  • Ignore PIP_TARGET and pip.conf global.target when preparing a build environment. ([#8438](https://github.com/pypa/pip/issues/8438) <https://github.com/pypa/pip/issues/8438>_)
  • Restore support for macOS 10.12 and older (via truststore). ([#12901](https://github.com/pypa/pip/issues/12901) <https://github.com/pypa/pip/issues/12901>_)
  • Allow installing pip in editable mode in a virtual environment on Windows. ([#12666](https://github.com/pypa/pip/issues/12666) <https://github.com/pypa/pip/issues/12666>_)

Vendored Libraries

  • Upgrade certifi to 2024.8.30
  • Upgrade distlib to 0.3.9
  • Upgrade truststore to 0.10.0
  • Upgrade urllib3 to 1.26.20

24.2 (2024-07-28)

Deprecations and Removals

  • Deprecate pip install --editable falling back to setup.py develop when using a setuptools version that does not support :pep:660 (setuptools v63 and older). ([#11457](https://github.com/pypa/pip/issues/11457) <https://github.com/pypa/pip/issues/11457>_)

Features

... (truncated)

Commits

Updates black[jupyter] from 24.8.0 to 24.10.0

Release notes

Sourced from black[jupyter]'s releases.

24.10.0

Highlights

  • Black is now officially tested with Python 3.13 and provides Python 3.13 mypyc-compiled wheels. (#4436) (#4449)
  • Black will issue an error when used with Python 3.12.5, due to an upstream memory safety issue in Python 3.12.5 that can cause Black's AST safety checks to fail. Please use Python 3.12.6 or Python 3.12.4 instead. (#4447)
  • Black no longer supports running with Python 3.8 (#4452)

Stable style

  • Fix crashes involving comments in parenthesised return types or X | Y style unions. (#4453)
  • Fix skipping Jupyter cells with unknown %% magic (#4462)

Preview style

  • Fix type annotation spacing between * and more complex type variable tuple (i.e. def fn(*args: *tuple[*Ts, T]) -> None: pass) (#4440)

Caching

  • Fix bug where the cache was shared between runs with and without --unstable (#4466)

Packaging

  • Upgrade version of mypyc used to 1.12 beta (#4450) (#4449)
  • blackd now requires a newer version of aiohttp. (#4451)

Output

  • Added Python target version information on parse error (#4378)
  • Add information about Black version to internal error messages (#4457)
Changelog

Sourced from black[jupyter]'s changelog.

24.10.0

Highlights

  • Black is now officially tested with Python 3.13 and provides Python 3.13 mypyc-compiled wheels. (#4436) (#4449)
  • Black will issue an error when used with Python 3.12.5, due to an upstream memory safety issue in Python 3.12.5 that can cause Black's AST safety checks to fail. Please use Python 3.12.6 or Python 3.12.4 instead. (#4447)
  • Black no longer supports running with Python 3.8 (#4452)

Stable style

  • Fix crashes involving comments in parenthesised return types or X | Y style unions. (#4453)
  • Fix skipping Jupyter cells with unknown %% magic (#4462)

Preview style

  • Fix type annotation spacing between * and more complex type variable tuple (i.e. def fn(*args: *tuple[*Ts, T]) -> None: pass) (#4440)

Caching

  • Fix bug where the cache was shared between runs with and without --unstable (#4466)

Packaging

  • Upgrade version of mypyc used to 1.12 beta (#4450) (#4449)
  • blackd now requires a newer version of aiohttp. (#4451)

Output

  • Added Python target version information on parse error (#4378)
  • Add information about Black version to internal error messages (#4457)
Commits

Updates bump-my-version from 0.26.1 to 0.28.0

Release notes

Sourced from bump-my-version's releases.

0.28.0

Compare the full difference.

New

  • Added container labels and version hooks. d4cb8f2

  • Add Docker support and configure Dependabot for Docker updates. 0315db4

    Introduce a Dockerfile for containerized environments and add a .dockerignore file to exclude unnecessary files. Also, update dependabot.yml to include daily checks for Docker image updates.

  • Add inputs section in GHA workflow example. 813e7f5

Other

Updates

  • Changed dependency manager to uv. cce9e1d

0.27.0

Compare the full difference.

Fixes

  • Fixed test to look for warning logs. 538c420

  • Refactor and enhance error handling. c84bfa7

    Updated subprocess calls to disable check, refined lint configurations, fixed type annotations and exceptions, and improved dictionary path validation.

New

  • Add HookError for failed hook execution with tests. 39fc233

    Raise HookError when a hook script exits with a non-zero status. Modified logger to display warnings instead of debug messages in such scenarios. Added tests to ensure exceptions are raised for failed hooks.

Other

Changelog

Sourced from bump-my-version's changelog.

0.28.0 (2024-10-16)

Compare the full difference.

New

  • Added container labels and version hooks. d4cb8f2

  • Add Docker support and configure Dependabot for Docker updates. 0315db4

    Introduce a Dockerfile for containerized environments and add a .dockerignore file to exclude unnecessary files. Also, update dependabot.yml to include daily checks for Docker image updates.

  • Add inputs section in GHA workflow example. 813e7f5

Other

Updates

  • Changed dependency manager to uv. cce9e1d

0.27.0 (2024-10-06)

Compare the full difference.

Fixes

  • Fixed test to look for warning logs. 538c420

  • Refactor and enhance error handling. c84bfa7

    Updated subprocess calls to disable check, refined lint configurations, fixed type annotations and exceptions, and improved dictionary path validation.

New

  • Add HookError for failed hook execution with tests. 39fc233

    Raise HookError when a hook script exits with a non-zero status. Modified logger to display warnings instead of debug messages in such scenarios. Added tests to ensure exceptions are raised for failed hooks.

Other

Commits
  • 697c23d Version updated from 0.27.0 to 0.28.0
  • 1ae5416 Merge pull request #244 from callowayproject/docker-image
  • a5fc5c0 Switch from ADD to COPY in Dockerfile
  • d4cb8f2 Added container labels and version hooks
  • 0315db4 Add Docker support and configure Dependabot for Docker updates
  • cce9e1d Changed dependency manager to uv.
  • 44eb22a Merge pull request #240 from callowayproject/pre-commit-ci-update-config
  • d04a19a Merge pull request #242 from christolis/fix/readme-file
  • 813e7f5 Add inputs section in GHA workflow example
  • 7c48f98 [pre-commit.ci] pre-commit autoupdate
  • Additional commits viewable in compare view

Updates tox from 4.21.0 to 4.23.2

Release notes

Sourced from tox's releases.

4.23.2

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.23.1...4.23.2

4.23.1

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.23.0...4.23.1

4.23.0

What's Changed

New Contributors

Full Changelog: tox-dev/tox@4.22.0...4.23.0

4.22.0

What's Changed

Full Changelog: tox-dev/tox@4.21.2...4.22.0

4.21.2

... (truncated)

Changelog

Sourced from tox's changelog.

v4.23.2 (2024-10-22)

Misc - 4.23.2

- :issue:`3415`

v4.23.1 (2024-10-21)

Improved Documentation - 4.23.1

  • Fix bad example in documentation for dependency groups - by :user:gaborbernat. (:issue:3240)

v4.23.0 (2024-10-16)

Features - 4.23.0

- Add ``NETRC`` to the list of environment variables always passed through. (:issue:`3410`)

Improved Documentation - 4.23.0

  • replace [tool.pyproject] and [tool.tox.pyproject] with [tool.tox] in config.rst (:issue:3411)

v4.22.0 (2024-10-15)

Features - 4.22.0

- Implement dependency group support as defined in :pep:`735` - see :ref:`dependency_groups` - by :user:`gaborbernat`. (:issue:`3408`)

v4.21.2 (2024-10-03)

Bugfixes - 4.21.2

  • Include tox.toml in sdist archives to fix test failures resulting from its lack.
    • by :user:mgorny (:issue:3389)

v4.21.1 (2024-10-02)

Bugfixes - 4.21.1

- Fix error when using ``requires`` within a TOML configuration file - by :user:`gaborbernat`. (:issue:`3386`)
- Fix error when using ``deps`` within a TOML configuration file - by :user:`gaborbernat`. (:issue:`3387`)
- Multiple fixes for the TOML configuration by :user:`gaborbernat`.:
  • Do not fail when there is an empty command within commands. </tr></table>

... (truncated)

Commits

Updates build from 1.2.2 to 1.2.2.post1

Release notes

Sourced from build's releases.

1.2.2.post1

This release only makes metadata (Python 3.13 classifier), docs, and test suite changes.

What's Changed

New Contributors

Full Changelog: pypa/build@1.2.2...1.2.2.post1

Changelog

Sourced from build's changelog.

+++++++++ Changelog +++++++++

Commits

Updates tox-gh from 1.4.1 to 1.4.4

Release notes

Sourced from tox-gh's releases.

1.4.4

What's Changed

Full Changelog: tox-dev/tox-gh@1.4.3...1.4.4

1.4.3

What's Changed

Full Changelog: tox-dev/tox-gh@1.4.2...1.4.3

1.4.2

What's Changed

Full Changelog: tox-dev/tox-gh@1.4.1...1.4.2

Commits

Updates setuptools from 75.1.0 to 75.3.0

Changelog

Sourced from setuptools's changelog.

v75.3.0

Features

  • Allowed using dict as an ordered type in setuptools.dist.check_requirements -- by :user:Avasam (#4575)

Bugfixes

  • Ensured methods in setuptools.modified preferably raise a consistent distutils.errors.DistutilsError type (except in the deprecated use case of SETUPTOOLS_USE_DISTUTILS=stdlib) -- by :user:Avasam (#4567)
  • Fix the ABI tag when building a wheel using the debug build of Python 3.13 on Windows. Previously, the ABI tag was missing the "d" flag. (#4674)
  • Fix clashes for optional-dependencies in pyproject.toml and extra_requires in setup.cfg/setup.py. As per PEP 621, optional-dependencies have to be honoured and dynamic behaviour is not allowed. (#4696)

Misc

v75.2.0

Features

  • Made errors when parsing Distribution data more explicit about the expected type (tuple[str, ...] | list[str]) -- by :user:Avasam (#4578)

Bugfixes

  • Fix a TypeError when a Distribution's old included attribute was a tuple -- by :user:Avasam (#4578)
  • Add workaround for bdist_wheel --dist-info-dir errors when customisation does not inherit from setuptools. (#4684)

v75.1.1

Bugfixes

... (truncated)

Commits
  • d8da7df Bump version: 75.2.0 → 75.3.0
  • a21c7fa Fix grammar in news fragment
  • a9a79e7 Fix wheel ABI tag for debug Python 3.13 on Windows (#4676)
  • 0bc3248 Merge simple type annotations from typeshed (#4504)
  • 1155ca8 Fix wheel ABI tag for debug Python 3.13 on Windows
  • 1ca55c9 Workaround for clash between ruff in pre-commit hook and pytest-ruff (#...
  • c498d16 Satisfy ruff linter - automatic fix
  • 1f92af5 Sync pre-commit-hook with version of ruff that gets automatically pulled in t...
  • a39336b Ruff: enable all pyflakes and perf rules (#4556)
  • e5f16a2 bump jaraco.test to py.typed version 5.5 in test extra (#4651)
  • Additional commits viewable in compare view

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 will merge this PR once CI passes on it, as requested by @Zeitsperre.


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

Updates the requirements on [xclim](https://github.com/Ouranosinc/xclim), [pip](https://github.com/pypa/pip), [black[jupyter]](https://github.com/psf/black), [bump-my-version](https://github.com/callowayproject/bump-my-version), [tox](https://github.com/tox-dev/tox), [build](https://github.com/pypa/build), [tox-gh](https://github.com/tox-dev/tox-gh) and [setuptools](https://github.com/pypa/setuptools) to permit the latest version.

Updates `xclim` to 0.53.2
- [Release notes](https://github.com/Ouranosinc/xclim/releases)
- [Changelog](https://github.com/Ouranosinc/xclim/blob/main/CHANGELOG.rst)
- [Commits](Ouranosinc/xclim@v0.52.2...v0.53.2)

Updates `pip` from 24.2.0 to 24.3.1
- [Changelog](https://github.com/pypa/pip/blob/main/NEWS.rst)
- [Commits](pypa/pip@24.2...24.3.1)

Updates `black[jupyter]` from 24.8.0 to 24.10.0
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@24.8.0...24.10.0)

Updates `bump-my-version` from 0.26.1 to 0.28.0
- [Release notes](https://github.com/callowayproject/bump-my-version/releases)
- [Changelog](https://github.com/callowayproject/bump-my-version/blob/master/CHANGELOG.md)
- [Commits](callowayproject/bump-my-version@0.26.1...0.28.0)

Updates `tox` from 4.21.0 to 4.23.2
- [Release notes](https://github.com/tox-dev/tox/releases)
- [Changelog](https://github.com/tox-dev/tox/blob/main/docs/changelog.rst)
- [Commits](tox-dev/tox@4.21.0...4.23.2)

Updates `build` from 1.2.2 to 1.2.2.post1
- [Release notes](https://github.com/pypa/build/releases)
- [Changelog](https://github.com/pypa/build/blob/main/CHANGELOG.rst)
- [Commits](pypa/build@1.2.2...1.2.2.post1)

Updates `tox-gh` from 1.4.1 to 1.4.4
- [Release notes](https://github.com/tox-dev/tox-gh/releases)
- [Commits](tox-dev/tox-gh@1.4.1...1.4.4)

Updates `setuptools` from 75.1.0 to 75.3.0
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](pypa/setuptools@v75.1.0...v75.3.0)

---
updated-dependencies:
- dependency-name: xclim
  dependency-type: direct:production
  dependency-group: python
- dependency-name: pip
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python
- dependency-name: black[jupyter]
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python
- dependency-name: bump-my-version
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python
- dependency-name: tox
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python
- dependency-name: build
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python
- dependency-name: tox-gh
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python
- dependency-name: setuptools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Nov 1, 2024
Copy link
Contributor

@Zeitsperre Zeitsperre left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dependabot merge

Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 1, 2024

One of your CI runs failed on this pull request, so Dependabot won't merge it.

Dependabot will still automatically merge this pull request if you amend it and your tests pass.

Copy link
Contributor

@Zeitsperre Zeitsperre left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@dependabot merge

Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 4, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Nov 4, 2024
@dependabot dependabot bot deleted the dependabot/pip/python-8349adcb9d branch November 4, 2024 15:22
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