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

deps: bump the all-pip group in /data/src with 16 updates #1042

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 9, 2024

Bumps the all-pip group in /data/src with 16 updates:

Package From To
pandas 2.2.2 2.2.3
matplotlib 3.9.2 3.9.3
rasterio 1.4.1 1.4.3
black 24.8.0 24.10.0
sqlalchemy 2.0.35 2.0.36
psycopg2-binary 2.9.9 2.9.10
geoalchemy2 0.15.2 0.16.0
google-cloud-storage 2.18.2 2.19.0
pydantic 2.8.2 2.10.3
slack-sdk 3.33.1 3.33.5
pytest 8.3.3 8.3.4
networkx 3.3 3.4.2
pyarrow 17.0.0 18.1.0
tqdm 4.66.5 4.67.1
vulture 2.12 2.14
pylint 3.3.1 3.3.2

Updates pandas from 2.2.2 to 2.2.3

Release notes

Sourced from pandas's releases.

Pandas 2.2.3

We are pleased to announce the release of pandas 2.2.3. This release includes some new features, bug fixes, and performance improvements. We recommend that all users upgrade to this version.

See the full whatsnew for a list of all the changes. Pandas 2.2.3 supports Python 3.9 and higher.

The release will be available on the defaults and conda-forge channels:

conda install pandas

Or via PyPI:

python3 -m pip install --upgrade pandas

Please report any issues with the release on the pandas issue tracker.

Thanks to all the contributors who made this release possible.

Commits

Updates matplotlib from 3.9.2 to 3.9.3

Release notes

Sourced from matplotlib's releases.

REL: 3.9.3

This is the third bugfix release of the 3.9.x series.

This release contains several bug-fixes and adjustments:

  • Fix axline with extremely small slopes
  • Fix axline with non-linear axis scales
  • Fix minimumSizeHint with Qt backend
  • Fix config directory usage when it's behind a symlink
  • Fix draggable legend when blitting is enabled
  • Fix high CPU utilization in the macosx backend
  • Fix multiple hatch edgecolors passed to contourf
  • Improve compatibility with pytest 8.2.0
Commits
  • 3ac0aea REL: 3.9.3
  • 3f7adbd Merge branch 'v3.9.2-doc' into v3.9.x
  • 4ca8d68 DOC: Create release notes for 3.9.3
  • 0cabfe2 Merge pull request #29195 from meeseeksmachine/auto-backport-of-pr-29191-on-v...
  • 562d458 Backport PR #29191: ci: Simplify 3.13t test setup
  • 0586854 Merge pull request #29176 from meeseeksmachine/auto-backport-of-pr-29148-on-v...
  • 84f2ae2 Merge pull request #29178 from meeseeksmachine/auto-backport-of-pr-29163-on-v...
  • dd57772 Backport PR #29163: ci: Remove outdated pkg-config package on macOS
  • c4bfd54 Backport PR #29148: Don't fail on equal-but-differently-named cmaps in qt fig...
  • d71ff49 Backport PR #29153: Bump codecov/codecov-action from 4 to 5 in the actions gr...
  • Additional commits viewable in compare view

Updates rasterio from 1.4.1 to 1.4.3

Release notes

Sourced from rasterio's releases.

1.4.3

Version 1.4.3 fixes two major regressions and several other minor bugs.

Bug fixes

  • Erroneous masking of 0-valued raster data by boundless, masked reads has been fixed (#3268).
  • If passed a dataset object, rasterio.open() now raises TypeError instead of proceeding and crashing (#3266).
  • All options of GDALFillNodata() are now supported by rasterio.fill.fill nodata() (#3265).
  • The flag for GDAL driver registration has been changed to an _env module attribute. Drivers should only be registered once per process at most (#3260). A side effect of this is that the GDAL_SKIP configuration option, which affects format driver registration, only has an effect the first time a dataset is opened.
  • Allow a dataset's compression metadata to surface in profile and compression properties even if the value isn't present in the Compression enum (#3259).
  • A bug that causes CRS.from_wkt().is_epsg_code() to erroneously return False when an EPSG code is embedded in WKT has been fixed (#3258).
  • IAU 2015 has been added to the list of known CRS authorities (#3243).
  • A major performance regression in Rasterio's merge tool has been corrected (#3234).

Other changes

  • CRS._matches() has been rewritten to better support CRS.to_authority() and CRS.to_epsg() (#3255).

1.4.2

Version 1.4.2 fixes two regressions and further improves compatibility with GDAL 3.10.

Important note about GDAL 3.10.0

GDAL version 3.10.0 will be released soon. No version of Rasterio before 1.4.2 will fully function with GDAL 3.10. To use GDAL 3.10, you must upgrade Rasterio to 1.4.2.

Bug fixes

  • The reproject() function now always returns a 2-D array, masked or non-masked, when requested (#3223).
  • The various rowcol() methods once again return integers by default as they did in 1.3.11 (#3219).
  • Internal usage of CRS.to_epsg(), which is slow, has been reduced, and CRS.__eq__() has been made much faster (#3216).
  • The warper's use of a MEM:: dataset has been made fully compatible with changes coming in GDAL 3.10 (#3212).

Packaging notes

All wheels on PyPI include GDAL 3.9.3.

The macOS ARM64 wheels on PyPI are available only for macOS version 14 (Sonoma) or newer because of changes on the platform we use to build those wheels.

Changelog

Sourced from rasterio's changelog.

1.4.3 (2024-12-02)

Bug fixes:

  • Erroneous masking of 0-valued raster data by boundless, masked reads has been fixed (#3268).
  • If passed a dataset object, rasterio.open() now raises TypeError instead of proceeding and crashing (#3266).
  • All options of GDALFillNodata() are now supported by the method in rasterio.fill (#3265).
  • The flag for GDAL driver registration has been changed to an _env module attribute. Drivers should only be registered once per process at most (#3260). A side effect of this is that the GDAL_SKIP configuration option, which affects format driver registration, only has an effect the first time a dataset is opened.
  • Allow a dataset's compression metadata to surface in profile and compression properties even if the value isn't present in the Compression enum (#3259).
  • A bug that causes CRS.from_wkt().is_epsg_code() to erroneously return False when an EPSG code is embedded in WKT has been fixed (#3258).
  • IAU 2015 has been added to the list of known CRS authorities (#3243).
  • A major performance regression in Rasterio's merge tool has been corrected (#3234).

Other changes:

  • CRS._matches() has been rewritten to better support CRS.to_authority() and CRS.to_epsg() (#3255).

1.4.2 (2024-10-30)

Version 1.4.2 fixes two regressions and further improves compatibility with GDAL 3.10.

Bug fixes:

  • The reproject() function now always returns a 2-D array, masked or non-masked, when requested (#3223).
  • The various rowcol() methods once again return integers by default as they did in 1.3.11 (#3219).
  • Internal usage of CRS.to_epsg(), which is slow, has been reduced, and CRS.eq() has been made much faster (#3216).
  • The warper's use of a MEM:: dataset has been made fully compatible with changes coming in GDAL 3.10 (#3212).
Commits

Updates black from 24.8.0 to 24.10.0

Release notes

Sourced from black'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'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 sqlalchemy from 2.0.35 to 2.0.36

Release notes

Sourced from sqlalchemy's releases.

2.0.36

Released: October 15, 2024

orm

  • [orm] [usecase] Added new parameter _orm.mapped_column.hash to ORM constructs such as _orm.mapped_column(), _orm.relationship(), etc., which is interpreted for ORM Native Dataclasses in the same way as other dataclass-specific field parameters.

    References: #11923

  • [orm] [bug] Fixed bug in ORM bulk update/delete where using RETURNING with bulk update/delete in combination with populate_existing would fail to accommodate the populate_existing option.

    References: #11912

  • [orm] [bug] Continuing from #11912, columns marked with mapped_column.onupdate, mapped_column.server_onupdate, or Computed are now refreshed in ORM instances when running an ORM enabled UPDATE with WHERE criteria, even if the statement does not use RETURNING or populate_existing.

    References: #11917

  • [orm] [bug] Fixed regression caused by fixes to joined eager loading in #11449 released in 2.0.31, where a particular joinedload case could not be asserted correctly. We now have an example of that case so the assertion has been repaired to allow for it.

    References: #11965

  • [orm] [bug] Improved the error message emitted when trying to map as dataclass a class while also manually providing the __table__ attribute. This usage is currently not supported.

    References: #11973

  • [orm] [bug] Refined the check which the ORM lazy loader uses to detect "this would be loading by primary key and the primary key is NULL, skip loading" to take into account the current setting for the orm.Mapper.allow_partial_pks parameter. If this parameter is False, then a composite PK value that has partial NULL elements should also be skipped. This can apply to some composite overlapping foreign key configurations.

... (truncated)

Commits

Updates psycopg2-binary from 2.9.9 to 2.9.10

Changelog

Sourced from psycopg2-binary's changelog.

Current release

What's new in psycopg 2.9.10 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^

  • Add support for Python 3.13.
  • Receive notifications on commit (:ticket:[#1728](https://github.com/psycopg/psycopg2/issues/1728)).
  • ~psycopg2.errorcodes map and ~psycopg2.errors classes updated to PostgreSQL 17.
  • Drop support for Python 3.7.

What's new in psycopg 2.9.9 ^^^^^^^^^^^^^^^^^^^^^^^^^^^

  • Add support for Python 3.12.
  • Drop support for Python 3.6.

What's new in psycopg 2.9.8 ^^^^^^^^^^^^^^^^^^^^^^^^^^^

  • Wheel package bundled with PostgreSQL 16 libpq in order to add support for recent features, such as sslcertmode.

What's new in psycopg 2.9.7 ^^^^^^^^^^^^^^^^^^^^^^^^^^^

  • Fix propagation of exceptions raised during module initialization (:ticket:[#1598](https://github.com/psycopg/psycopg2/issues/1598)).
  • Fix building when pg_config returns an empty string (:ticket:[#1599](https://github.com/psycopg/psycopg2/issues/1599)).
  • Wheel package bundled with OpenSSL 1.1.1v.

What's new in psycopg 2.9.6 ^^^^^^^^^^^^^^^^^^^^^^^^^^^

  • Package manylinux 2014 for aarch64 and ppc64le platforms, in order to include libpq 15 in the binary package (:ticket:[#1396](https://github.com/psycopg/psycopg2/issues/1396)).
  • Wheel package bundled with OpenSSL 1.1.1t.

What's new in psycopg 2.9.5 ^^^^^^^^^^^^^^^^^^^^^^^^^^^

  • Add support for Python 3.11.
  • Add support for rowcount in MERGE statements in binary packages (:ticket:[#1497](https://github.com/psycopg/psycopg2/issues/1497)).

... (truncated)

Commits
  • a805acf chore: bump to version 2.9.10
  • 78561ac Merge pull request #1728 from romank0/fetch-notifications-on-commit
  • 5283a83 chore: add TransactionTimeout error, added in PostgreSQL 17
  • f64dd39 docs: add news entry about notifications on commit
  • cba6d39 removes duplication in tests
  • 282360d adds notifications processing after every PQexec
  • 362cb00 Adds notifies processing in pq_commit
  • eaeeb76 Merge pull request #1729 from edgarrmondragon/1692-py313-wheels
  • 4987362 ci(windows): drop Python 3.8 packages
  • 8c9a35d ci: test with PostgreSQL 17
  • Additional commits viewable in compare view

Updates geoalchemy2 from 0.15.2 to 0.16.0

Release notes

Sourced from geoalchemy2's releases.

0.16.0

What's Changed

Full Changelog: geoalchemy/geoalchemy2@0.15.2...0.16.0

Changelog

Sourced from geoalchemy2's changelog.

0.16.0

Commits
  • b51dc36 Release: 0.16.0 (#527)
  • 27712ca Test: Add test in test_functional.py for custom Geometry that uses WKT elemen...
  • b319a15 Add option to ensure all dialects are properly tested in CI (#526)
  • f93cf5a Improve MariaDB support (#524)
  • See full diff in compare view

Updates google-cloud-storage from 2.18.2 to 2.19.0

Release notes

Sourced from google-cloud-storage's releases.

v2.19.0

2.19.0 (2024-11-21)

Features

  • Add integration test for universe domain (#1346) (02a972d)
  • Add restore_bucket and handling for soft-deleted buckets (#1365) (ab94efd)
  • Add support for restore token (#1369) (06ed15b)
  • IAM signBlob retry and universe domain support (#1380) (abc8061)

Bug Fixes

  • Allow signed post policy v4 with service account and token (#1356) (8ec02c0)
  • Do not spam the log with checksum related INFO messages when downloading using transfer_manager (#1357) (42392ef)
Changelog

Sourced from google-cloud-storage's changelog.

2.19.0 (2024-11-21)

Features

  • Add integration test for universe domain (#1346) (02a972d)
  • Add restore_bucket and handling for soft-deleted buckets (#1365) (ab94efd)
  • Add support for restore token (#1369) (06ed15b)
  • IAM signBlob retry and universe domain support (#1380) (abc8061)

Bug Fixes

  • Allow signed post policy v4 with service account and token (#1356) (8ec02c0)
  • Do not spam the log with checksum related INFO messages when downloading using transfer_manager (#1357) (42392ef)
Commits
  • 309bad1 chore(main): release 2.19.0 (#1348)
  • a925427 tests: skip universe domain test in preprod (#1386)
  • abc8061 feat: IAM signBlob retry and universe domain support (#1380)
  • 0cfddf4 chore: remove debugger comment (#1381)
  • 63cff04 chore: add Cloud Trace adoption attributes (#1374)
  • 012eab4 chore(revert): Revert "feat: add support for restore token (#1369)" (#1373)
  • 06ed15b feat: add support for restore token (#1369)
  • ab94efd Feat: Add restore_bucket and handling for soft-deleted buckets (#1365)
  • 42392ef fix: do not spam the log with checksum related INFO messages when downloading...
  • 8ec02c0 fix: allow signed post policy v4 with service account and token (#1356)
  • Additional commits viewable in compare view

Updates pydantic from 2.8.2 to 2.10.3

Release notes

Sourced from pydantic's releases.

v2.10.3 2024-12-03

What's Changed

Fixes

  • Set fields when defer_build is set on Pydantic dataclasses by @​Viicos in #10984
  • Do not resolve the JSON Schema reference for dict core schema keys by @​Viicos in #10989
  • Use the globals of the function when evaluating the return type for PlainSerializer and WrapSerializer functions by @​Viicos in #11008
  • Fix host required enforcement for urls to be compatible with v2.9 behavior by @​sydney-runkle in #11027
  • Add a default_factory_takes_validated_data property to FieldInfo by @​Viicos in #11034
  • Fix url json schema in serialization mode by @​sydney-runkle in #11035

Full Changelog: pydantic/pydantic@v2.10.2...v2.10.3

v2.10.2 2024-11-26

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.10.1...v2.10.2

v2.10.1 2024-11-21

What's Changed

Packaging

Fixes

Full Changelog: pydantic/pydantic@v2.10.0...v2.10.1

v2.10.0 2024-11-20

... (truncated)

Changelog

Sourced from pydantic's changelog.

v2.10.3 (2024-12-03)

GitHub release

What's Changed

Fixes

  • Set fields when defer_build is set on Pydantic dataclasses by @​Viicos in #10984
  • Do not resolve the JSON Schema reference for dict core schema keys by @​Viicos in #10989
  • Use the globals of the function when evaluating the return type for PlainSerializer and WrapSerializer functions by @​Viicos in #11008
  • Fix host required enforcement for urls to be compatible with v2.9 behavior by @​sydney-runkle in #11027
  • Add a default_factory_takes_validated_data property to FieldInfo by @​Viicos in #11034
  • Fix url json schema in serialization mode by @​sydney-runkle in #11035

v2.10.2 (2024-11-25)

GitHub release

What's Changed

Fixes

v2.10.1 (2024-11-21)

GitHub release

What's Changed

Packaging

Fixes

... (truncated)

Commits
  • c326748 Prep for v2.10.3 release (#11038)
  • 68d35bf Fix url json schema in serialization mode (#11035)
  • fa69b4c Add a default_factory_takes_validated_data property to FieldInfo (#11034)
  • 435a703 Fix host required enforcement for urls to be compatible with v2.9 behavior (#...
  • b2c4548 Use the globals of the function when evaluating the return type for `PlainSer...
  • cb962c1 Do not resolve the JSON Schema reference for dict core schema keys (#10989)
  • 10ebcdf Set fields when defer_build is set on Pydantic dataclasses (#10984)
  • fe32515 Prepare for v2.10.2 release (#10982)
  • 226cfaf Hide BaseModel.__replace__ definition from type checkers (#10979)
  • 02229a6 hashing support for urls (#10975)
  • Additional commits viewable in compare view

Updates slack-sdk from 3.33.1 to 3.33.5

Release notes

Sourced from slack-sdk's releases.

version 3.33.5

Changes


version 3.33.4

Changes


version 3.33.3

Changes

  • #1576 Enable rich_text_* elements to have an empty 'elements' property - Thanks @​seratch

version 3.33.2

Changes


Commits

Updates pytest from 8.3.3 to 8.3.4

Release notes <...

Description has been truncated

Bumps the all-pip group in /data/src with 16 updates:

| Package | From | To |
| --- | --- | --- |
| [pandas](https://github.com/pandas-dev/pandas) | `2.2.2` | `2.2.3` |
| [matplotlib](https://github.com/matplotlib/matplotlib) | `3.9.2` | `3.9.3` |
| [rasterio](https://github.com/rasterio/rasterio) | `1.4.1` | `1.4.3` |
| [black](https://github.com/psf/black) | `24.8.0` | `24.10.0` |
| [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) | `2.0.35` | `2.0.36` |
| [psycopg2-binary](https://github.com/psycopg/psycopg2) | `2.9.9` | `2.9.10` |
| [geoalchemy2](https://github.com/geoalchemy/geoalchemy2) | `0.15.2` | `0.16.0` |
| [google-cloud-storage](https://github.com/googleapis/python-storage) | `2.18.2` | `2.19.0` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.8.2` | `2.10.3` |
| [slack-sdk](https://github.com/slackapi/python-slack-sdk) | `3.33.1` | `3.33.5` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.3.3` | `8.3.4` |
| [networkx](https://github.com/networkx/networkx) | `3.3` | `3.4.2` |
| [pyarrow](https://github.com/apache/arrow) | `17.0.0` | `18.1.0` |
| [tqdm](https://github.com/tqdm/tqdm) | `4.66.5` | `4.67.1` |
| [vulture](https://github.com/jendrikseipp/vulture) | `2.12` | `2.14` |
| [pylint](https://github.com/pylint-dev/pylint) | `3.3.1` | `3.3.2` |


Updates `pandas` from 2.2.2 to 2.2.3
- [Release notes](https://github.com/pandas-dev/pandas/releases)
- [Commits](pandas-dev/pandas@v2.2.2...v2.2.3)

Updates `matplotlib` from 3.9.2 to 3.9.3
- [Release notes](https://github.com/matplotlib/matplotlib/releases)
- [Commits](matplotlib/matplotlib@v3.9.2...v3.9.3)

Updates `rasterio` from 1.4.1 to 1.4.3
- [Release notes](https://github.com/rasterio/rasterio/releases)
- [Changelog](https://github.com/rasterio/rasterio/blob/main/CHANGES.txt)
- [Commits](rasterio/rasterio@1.4.1...1.4.3)

Updates `black` 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 `sqlalchemy` from 2.0.35 to 2.0.36
- [Release notes](https://github.com/sqlalchemy/sqlalchemy/releases)
- [Changelog](https://github.com/sqlalchemy/sqlalchemy/blob/main/CHANGES.rst)
- [Commits](https://github.com/sqlalchemy/sqlalchemy/commits)

Updates `psycopg2-binary` from 2.9.9 to 2.9.10
- [Changelog](https://github.com/psycopg/psycopg2/blob/master/NEWS)
- [Commits](psycopg/psycopg2@2.9.9...2.9.10)

Updates `geoalchemy2` from 0.15.2 to 0.16.0
- [Release notes](https://github.com/geoalchemy/geoalchemy2/releases)
- [Changelog](https://github.com/geoalchemy/geoalchemy2/blob/master/CHANGES.txt)
- [Commits](geoalchemy/geoalchemy2@0.15.2...0.16.0)

Updates `google-cloud-storage` from 2.18.2 to 2.19.0
- [Release notes](https://github.com/googleapis/python-storage/releases)
- [Changelog](https://github.com/googleapis/python-storage/blob/main/CHANGELOG.md)
- [Commits](googleapis/python-storage@v2.18.2...v2.19.0)

Updates `pydantic` from 2.8.2 to 2.10.3
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.8.2...v2.10.3)

Updates `slack-sdk` from 3.33.1 to 3.33.5
- [Release notes](https://github.com/slackapi/python-slack-sdk/releases)
- [Commits](slackapi/python-slack-sdk@v3.33.1...v3.33.5)

Updates `pytest` from 8.3.3 to 8.3.4
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.3.3...8.3.4)

Updates `networkx` from 3.3 to 3.4.2
- [Release notes](https://github.com/networkx/networkx/releases)
- [Commits](networkx/networkx@networkx-3.3...networkx-3.4.2)

Updates `pyarrow` from 17.0.0 to 18.1.0
- [Release notes](https://github.com/apache/arrow/releases)
- [Commits](apache/arrow@go/v17.0.0...apache-arrow-18.1.0)

Updates `tqdm` from 4.66.5 to 4.67.1
- [Release notes](https://github.com/tqdm/tqdm/releases)
- [Commits](tqdm/tqdm@v4.66.5...v4.67.1)

Updates `vulture` from 2.12 to 2.14
- [Release notes](https://github.com/jendrikseipp/vulture/releases)
- [Changelog](https://github.com/jendrikseipp/vulture/blob/main/CHANGELOG.md)
- [Commits](jendrikseipp/vulture@v2.12...v2.14)

Updates `pylint` from 3.3.1 to 3.3.2
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v3.3.1...v3.3.2)

---
updated-dependencies:
- dependency-name: pandas
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-pip
- dependency-name: matplotlib
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-pip
- dependency-name: rasterio
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-pip
- dependency-name: black
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-pip
- dependency-name: sqlalchemy
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-pip
- dependency-name: psycopg2-binary
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-pip
- dependency-name: geoalchemy2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-pip
- dependency-name: google-cloud-storage
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-pip
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-pip
- dependency-name: slack-sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-pip
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-pip
- dependency-name: networkx
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-pip
- dependency-name: pyarrow
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-pip
- dependency-name: tqdm
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-pip
- dependency-name: vulture
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-pip
- dependency-name: pylint
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-pip
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python labels Dec 9, 2024
Copy link

vercel bot commented Dec 9, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
vacant-lots-proj ✅ Ready (Inspect) Visit Preview 💬 Add feedback Dec 9, 2024 6:12am

Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 11, 2024

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

@dependabot dependabot bot closed this Dec 11, 2024
@dependabot dependabot bot deleted the dependabot/pip/data/src/staging/all-pip-078d86abc0 branch December 11, 2024 02:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
backend dependencies Pull requests that update a dependency file frontend python
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants