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 poetry-dependencies group with 43 updates #55

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the poetry-dependencies group with 43 updates:

Package From To
pydantic 2.9.1 2.9.2
pandas 2.2.2 2.2.3
faker 28.4.1 30.1.0
ruff 0.6.4 0.6.8
sphinx-autobuild 2024.9.3 2024.9.19
sphinx-autodoc-typehints 2.4.0 2.4.4
pyarrow-stubs 17.2 17.6
types-setuptools 74.1.0.20240907 75.1.0.20240917
aiohappyeyeballs 2.4.0 2.4.3
aiohttp 3.10.5 3.10.8
alembic 1.13.2 1.13.3
anyio 4.4.0 4.6.0
certipy 0.1.3 0.2.1
debugpy 1.8.5 1.8.6
filelock 3.16.0 3.16.1
google-api-core 2.19.2 2.20.0
google-auth 2.34.0 2.35.0
google-cloud-pubsub 2.23.1 2.25.2
greenlet 3.1.0 3.1.1
grpcio 1.66.1 1.66.2
grpcio-status 1.66.1 1.66.2
identify 2.6.0 2.6.1
idna 3.8 3.10
jupyter-client 8.6.2 8.6.3
jupyterhub 5.1.0 5.2.0
platformdirs 4.3.2 4.3.6
prometheus-client 0.20.0 0.21.0
prompt-toolkit 3.0.47 3.0.48
protobuf 5.28.0 5.28.2
pyasn1 0.6.0 0.6.1
pyasn1-modules 0.4.0 0.4.1
pydantic-core 2.23.3 2.23.4
pytz 2024.1 2024.2
sqlalchemy 2.0.34 2.0.35
starlette 0.38.5 0.39.2
types-pytz 2024.1.0.20240417 2024.2.0.20240913
types-requests 2.32.0.20240907 2.32.0.20240914
tzdata 2024.1 2024.2
urllib3 2.2.2 2.2.3
uvicorn 0.30.6 0.31.0
virtualenv 20.26.4 20.26.6
websockets 13.0.1 13.1
yarl 1.11.1 1.13.1

Updates pydantic from 2.9.1 to 2.9.2

Release notes

Sourced from pydantic's releases.

v2.9.2 (2024-09-17)

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.9.1...v2.9.2

Changelog

Sourced from pydantic's changelog.

v2.9.2 (2024-09-17)

GitHub release

What's Changed

Fixes

Commits

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 faker from 28.4.1 to 30.1.0

Release notes

Sourced from faker's releases.

Release v30.1.0

See CHANGELOG.md.

Release v30.0.0

See CHANGELOG.md.

Release v29.0.0

See CHANGELOG.md.

Changelog

Sourced from faker's changelog.

v30.1.0 - 2024-09-30

  • Add PIN Code range and union territories in en_IN address provider. Thanks @​wh0th3h3llam1.

v30.0.0 - 2024-09-25

  • Force the slug always be generated with ASCII characters. Thanks @​Pandede.

v29.0.0 - 2024-09-19

  • Fix pydecimal distribution when called with a range across 0. Thanks @​AlexLitvino.
Commits
  • b25d2e8 Bump version: 30.0.0 → 30.1.0
  • c880961 📝 Update CHANGELOG.md
  • ceb7e88 Add typing_extensions to requirements
  • c26d4e8 fix dict merge operator for python 3.8
  • ea75a20 fix typing on python 3.8
  • cb36020 fix typing
  • 2a25996 Add PIN Code range and union territories in en_IN address provider (#2091)
  • e84d0a4 Update PULL_REQUEST_TEMPLATE.md
  • 8417405 Update CONTRIBUTING.rst
  • 3dc6de2 Bump version: 29.0.0 → 30.0.0
  • Additional commits viewable in compare view

Updates ruff from 0.6.4 to 0.6.8

Release notes

Sourced from ruff's releases.

0.6.8

Release Notes

Preview features

  • Remove unnecessary parentheses around match case clauses (#13510)
  • Parenthesize overlong if guards in match..case clauses (#13513)
  • Detect basic wildcard imports in ruff analyze graph (#13486)
  • [pylint] Implement boolean-chained-comparison (R1716) (#13435)

Rule changes

  • [lake8-simplify] Detect SIM910 when using variadic keyword arguments, i.e., **kwargs (#13503)
  • [pyupgrade] Avoid false negatives with non-reference shadowed bindings of loop variables (UP028) (#13504)

Bug fixes

  • Detect tuples bound to variadic positional arguments i.e. *args (#13512)
  • Exit gracefully on broken pipe errors (#13485)
  • Avoid panic when analyze graph hits broken pipe (#13484)

Performance

  • Reuse BTreeSets in module resolver (#13440)
  • Skip traversal for non-compound statements (#13441)

Contributors

Install ruff 0.6.8

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/ruff/releases/download/0.6.8/ruff-installer.sh | sh

Install prebuilt binaries via powershell script

... (truncated)

Changelog

Sourced from ruff's changelog.

0.6.8

Preview features

  • Remove unnecessary parentheses around match case clauses (#13510)
  • Parenthesize overlong if guards in match..case clauses (#13513)
  • Detect basic wildcard imports in ruff analyze graph (#13486)
  • [pylint] Implement boolean-chained-comparison (R1716) (#13435)

Rule changes

  • [lake8-simplify] Detect SIM910 when using variadic keyword arguments, i.e., **kwargs (#13503)
  • [pyupgrade] Avoid false negatives with non-reference shadowed bindings of loop variables (UP028) (#13504)

Bug fixes

  • Detect tuples bound to variadic positional arguments i.e. *args (#13512)
  • Exit gracefully on broken pipe errors (#13485)
  • Avoid panic when analyze graph hits broken pipe (#13484)

Performance

  • Reuse BTreeSets in module resolver (#13440)
  • Skip traversal for non-compound statements (#13441)

0.6.7

Preview features

  • Add Python version support to ruff analyze CLI (#13426)
  • Add exclude support to ruff analyze (#13425)
  • Fix parentheses around return type annotations (#13381)

Rule changes

  • [pycodestyle] Fix: Don't autofix if the first line ends in a question mark? (D400) (#13399)

Bug fixes

  • Respect lint.exclude in ruff check --add-noqa (#13427)

Performance

  • Avoid tracking module resolver files in Salsa (#13437)
  • Use forget for module resolver database (#13438)

0.6.6

Preview features

... (truncated)

Commits
  • ae39ce5 Bump version to 0.6.8 (#13522)
  • ff2d214 Don't skip over imports and other nodes containing nested statements in impor...
  • 9442cd8 Parenthesize match..case if guards (#13513)
  • 8012707 Align formatting of patterns in match-cases with expression formatting in cla...
  • d7ffe46 Disable the typeset plugin (#13517)
  • 7c83af4 red-knot: Implement the not operator for all Type variants (#13432)
  • bbb044e Detect tuples bound to variadic positional arguments i.e. *args (#13512)
  • 4810652 Avoid UP028 false negatives with non-reference shadowed bindings of loop vari...
  • 11f06e0 Detect SIM910 when using variadic keyword arguments, i.e., **kwargs (#13503)
  • f27a8b8 [internal] ComparableExpr (f)strings and bytes made invariant under concate...
  • Additional commits viewable in compare view

Updates sphinx-autobuild from 2024.9.3 to 2024.9.19

Release notes

Sourced from sphinx-autobuild's releases.

Release 2024.09.19

2024.09.19

Release 2024.09.18

2024.09.18

Release 2024.09.17

2024.09.17

Changelog

Sourced from sphinx-autobuild's changelog.

Changelog

unreleased

2024.09.19 - 2024-09-19

  • Fix path filtering on Windows by normalising path separators.
  • Filter various directories by default (.git, venv, etc).
  • Serve the correct directory when using make mode (-M).

2024.09.18 - 2024-09-18

  • Run Sphinx through the Python entry point rather than the binary on PATH.

2024.09.17 - 2024-09-17

  • Relax checks for paths that aren't required to exist.

2024.09.03 - 2024-09-03

  • Fix support for Python 3.9.
  • Fix running sphinx-autobuild via entry point scripts.
  • Run sphinx-build in a subprocess to mitigate autdoc issues.
  • Support the -M 'make mode' option for sphinx-build.

2024.04.16 - 2024-04-16

  • Add a missing dependency on watchfiles.
  • Adopt Ruff in place of flake8 and black.

2024.04.13 - 2024-04-13

  • Drop python-livereload.
  • Add starlette and uvicorn as dependencies.
  • Implement hot reloading via websockets.
  • Run Sphinx rebuilds in an asynchronous executor.

2024.02.04 - 2024-02-04

  • Declare support for Python 3.9, 3.10, 3.11, and 3.12
  • Drop support for Python 3.8 and earlier

... (truncated)

Commits

Updates sphinx-autodoc-typehints from 2.4.0 to 2.4.4

Release notes

Sourced from sphinx-autodoc-typehints's releases.

Fix broken link in README

Full Changelog: tox-dev/sphinx-autodoc-typehints@2.4.3...2.4.4

2.4.3

Full Changelog: tox-dev/sphinx-autodoc-typehints@2.4.2...2.4.3

2.4.2

What's Changed

Full Changelog: tox-dev/sphinx-autodoc-typehints@2.4.1...2.4.2

2.4.1

What's Changed

Full Changelog: tox-dev/sphinx-autodoc-typehints@2.4.0...2.4.1

Commits

Updates pyarrow-stubs from 17.2 to 17.6

Release notes

Sourced from pyarrow-stubs's releases.

17.6

What's Changed

Full Changelog: zen-xu/pyarrow-stubs@17.5...17.6

17.5

What's Changed

New Contributors

Full Changelog: zen-xu/pyarrow-stubs@17.4...17.5

17.4

What's Changed

New Contributors

Full Changelog: zen-xu/pyarrow-stubs@17.3...17.4

17.3

What's Changed

New Contributors

Full Changelog: zen-xu/pyarrow-stubs@17.2...17.3

Commits

Updates types-setuptools from 74.1.0.20240907 to 75.1.0.20240917

Commits

Updates aiohappyeyeballs from 2.4.0 to 2.4.3

Release notes

Sourced from aiohappyeyeballs's releases.

v2.4.3 (2024-09-30)

Fix

  • fix: rewrite staggered_race to be race safe (#101)

  • fix: re-raise RuntimeError when uvloop raises RuntimeError during connect (#105) (c8f1fa9)

v2.4.2 (2024-09-27)

Fix

  • fix: copy staggered from standard lib for python 3.12+ (#95) (c5a4023)

v2.4.1 (2024-09-26)

Fix

  • fix: avoid passing loop to staggered.staggered_race (#94) (5f80b79)
Changelog

Sourced from aiohappyeyeballs's changelog.

v2.4.3 (2024-09-30)

Fix

  • Rewrite staggered_race to be race safe (#101) (9db617a)
  • Re-raise runtimeerror when uvloop raises runtimeerror during connect (#105) (c8f1fa9)

v2.4.2 (2024-09-27)

Fix

  • Copy staggered from standard lib for python 3.12+ (#95) (c5a4023)

v2.4.1 (2024-09-26)

Fix

  • Avoid passing loop to staggered.staggered_race (#94) (5f80b79)
Commits

Updates aiohttp from 3.10.5 to 3.10.8

Release notes

Sourced from aiohttp's releases.

3.10.8

Bug fixes

  • Fixed cancellation leaking upwards on timeout -- by :user:bdraco.

    Related issues and pull requests on GitHub: #9326.


3.10.7

Bug fixes

  • Fixed assembling the :class:~yarl.URL for web requests when the host contains a non-default port or IPv6 address -- by :user:bdraco.

    Related issues and pull requests on GitHub: #9309.

Miscellaneous internal changes

  • Improved performance of determining if a URL is absolute -- by :user:bdraco.

    The property :attr:~yarl.URL.absolute is more performant than the method URL.is_absolute() and preferred when newer versions of yarl are used.

    Related issues and pull requests on GitHub: #9171.

  • Replaced code that can now be handled by yarl -- by :user:bdraco.

    Related issues and pull requests on GitHub: #9301.

... (truncated)

Changelog

Sourced from aiohttp's changelog.

3.10.8 (2024-09-28)

Bug fixes

  • Fixed cancellation leaking upwards on timeout -- by :user:bdraco.

    Related issues and pull requests on GitHub: :issue:9326.


3.10.7 (2024-09-27)

Bug fixes

  • Fixed assembling the :class:~yarl.URL for web requests when the host contains a non-default port or IPv6 address -- by :user:bdraco.

    Related issues and pull requests on GitHub: :issue:9309.

Miscellaneous internal changes

  • Improved performance of determining if a URL is absolute -- by :user:bdraco.

    The property :attr:~yarl.URL.absolute is more performant than the method URL.is_absolute() and preferred when newer versions of yarl are used.

    Related issues and pull requests on GitHub: :issue:9171.

  • Replaced code that can now be handled by yarl -- by :user:bdraco.

    Related issues and pull requests on GitHub:

... (truncated)

Commits

Updates alembic from 1.13.2 to 1.13.3

Release notes

Sourced from alembic's releases.

1.13.3

Released: September 23, 2024

usecase

  • [usecase] [autogenerate] Render if_exists and if_not_exists parameters in CreateTableOp, CreateIndexOp, DropTableOp and DropIndexOp in an autogenerate context. While Alembic does not set these parameters during an autogenerate run, they can be enabled using a custom Rewriter in the env.py file, where they will now be part of the rendered Python code in revision files. Pull request courtesy of Louis-Amaury Chaib (@​lachaib).

  • [usecase] [environment] Enhance version_locations parsing to handle paths containing newlines.

    References: #1509

  • [usecase] [operations] Added support for Operations.create_table.if_not_exists and Operations.drop_table.if_exists, adding similar functionality to render IF [NOT] EXISTS for table operations in a similar way as with indexes. Pull request courtesy Aaron Griffin.

    References: #1520

misc

  • [change] [general] The pin for setuptools<69.3 in pyproject.toml has been removed. This pin was to prevent a sudden change to PEP 625 in setuptools from taking place which changes the file name of SQLAlchemy's source distribution on pypi to be an all lower case name, and the change was extended to all SQLAlchemy projects to prevent any further surprises. However, the presence of this pin is now holding back environments that otherwise want to use a newer setuptools, so we've decided to move forward with this change, with the assumption that build environments will have largely accommodated the setuptools change by now.
Commits

Updates anyio from 4.4.0 to 4.6.0

Release notes

Sourced from anyio's releases.

4.6.0

  • Dropped support for Python 3.8 (as #698 cannot be resolved without cancel message support)
  • Fixed 100% CPU use on asyncio while waiting for an exiting task group to finish while said task group is within a cancelled cancel scope (#695)
  • Fixed cancel scopes on asyncio not propagating CancelledError on exit when the enclosing cancel scope has been effectively cancelled (#698)
  • Fixed asyncio task groups not yielding control to the event loop at exit if there were no child tasks to wait on
  • Fixed inconsistent task uncancellation with asyncio cancel scopes belonging to a task group when said task group has child tasks running

4.5.0

  • Improved the performance of anyio.Lock and anyio.Semaphore on asyncio (even up to 50 %)
  • Added the fast_acquire parameter to anyio.Lock and anyio.Semaphore to further boost performance at the expense of safety (acquire() will not yield control back if there is no contention)
  • Added support for the from_uri(), full_match(), parser methods/properties in anyio.Path, newly added in Python 3.13 (#737)
  • Added support for more keyword arguments for run_process() and open_process(): startupinfo, creationflags, pass_fds, user, group, extra_groups and umask (#742)
  • Improved the type annotations and support for PathLike in run_process() and open_process() to allow for path-like arguments, just like subprocess.Popen
  • Changed the ResourceWarning from an unclosed memory object stream to include its address for easier identification
  • Changed start_blocking_portal() to always use daemonic threads, to accommodate the "loitering event loop" use case
  • Bumped the minimum version of Trio to v0.26.1
  • Fixed __repr__() of MemoryObjectItemReceiver, when item is not defined (#767; PR by @​Danipulok)
  • Fixed to_process.run_sync() failing to initialize if __main__.__file__ pointed to a file in a nonexistent directory (#696)
  • Fixed AssertionError: feed_data after feed_eof on asyncio when a subprocess is closed early, before its output has been read (#490)
  • Fixed TaskInfo.has_pending_cancellation() on asyncio not respecting shielded scopes (#771; PR by @​gschaffner)
  • Fixed SocketStream.receive() returning bytearray instead of bytes when using asyncio with ProactorEventLoop (Windows) (#776)
  • Fixed quitting the debugger in a pytest test session while in an active task group failing the test instead of exiting the test session (because the exit exception arrives in an exception group)
  • Fixed support for Linux abstract namespaces in UNIX sockets that was broken in v4.2 (#781; PR by @​tapetersen)
  • Fixed KeyboardInterrupt (ctrl+c) hanging the asyncio pytest runner
Changelog

Sourced from anyio's changelog.

Version history

This library adheres to Semantic Versioning 2.0 <http://semver.org/>_.

4.6.0

  • Dropped support for Python 3.8 (as [#698](https://github.com/agronholm/anyio/issues/698) <https://github.com/agronholm/anyio/issues/698>_ cannot be resolved without cancel message support)
  • Fixed 100% CPU use on asyncio while waiting for an exiting task group to finish while said task group is within a cancelled cancel scope ([#695](https://github.com/agronholm/anyio/issues/695) <https://github.com/agronholm/anyio/issues/695>_)
  • Fixed cancel scopes on asyncio not propagating CancelledError on exit when the enclosing cancel scope has been effectively cancelled ([#698](https://github.com/agronholm/anyio/issues/698) <https://github.com/agronholm/anyio/issues/698>_)
  • Fixed asyncio task groups not yielding control to the event loop at exit if there were no child tasks to wait on
  • Fixed inconsistent task uncancellation with asyncio cancel scopes belonging to a task group when said task group has child tasks running

4.5.0

  • Improved the performance of anyio.Lock and anyio.Semaphore on asyncio (even up to 50 %)
  • Added the fast_acquire parameter to anyio.Lock and anyio.Semaphore to further boost performance at the expense of safety (acquire() will not yield control back if there is no contention)
  • Added support for the from_uri(), full_match(), parser methods/properties in anyio.Path, newly added in Python 3.13 ([#737](https://github.com/agronholm/anyio/issues/737) <https://github.com/agronholm/anyio/issues/737>_)
  • Added support for more keyword arguments for run_process() and open_process(): startupinfo, creationflags, pass_fds, user, group, extra_groups and umask ([#742](https://github.com/agronholm/anyio/issues/742) <https://github.com/agronholm/anyio/issues/742>_)
  • Improved the type annotations and support for PathLike in run_process() and open_process() to allow for path-like arguments, just like subprocess.Popen
  • Changed the ResourceWarning from an unclosed memory object stream to include its address for easier identification
  • Changed start_blocking_portal() to always use daemonic threads, to accommodate the "loitering event loop" use case
  • Bumped the minimum version of Trio to v0.26.1
  • Fixed __repr__() of MemoryObjectItemReceiver, when item is not defined ([#767](https://github.com/agronholm/anyio/issues/767) <https://github.com/agronholm/anyio/pull/767>_; PR by @​Danipulok)
  • Fixed to_process.run_sync() failing to initialize if __main__.__file__ pointed to a file in a nonexistent directory ([#696](https://github.com/agronholm/anyio/issues/696) <https://github.com/agronholm/anyio/issues/696>_)
  • Fixed AssertionError: feed_data after feed_eof on asyncio when a subprocess is closed early, before its output has been read ([#490](https://github.com/agronholm/anyio/issues/490) <https://github.com/agronholm/anyio/issues/490>_)

... (truncated)

Commits
  • 8cce749 Bumped up the version
  • 01a37c6 Fixed TaskGroup and CancelScope exit issues on asyncio (#774)
  • 7f35ce7 Bumped up the version
  • 108cc83 [pre-commit.ci] pre-commit autoupdate (#788)
  • d1aea98 Fixed KeyboardInterrupt hanging the asyncio test runner (#779)
  • c1aff53 [pre-commit.ci] pre-commit autoupdate (#785)

Bumps the poetry-dependencies group with 43 updates:

| Package | From | To |
| --- | --- | --- |
| [pydantic](https://github.com/pydantic/pydantic) | `2.9.1` | `2.9.2` |
| [pandas](https://github.com/pandas-dev/pandas) | `2.2.2` | `2.2.3` |
| [faker](https://github.com/joke2k/faker) | `28.4.1` | `30.1.0` |
| [ruff](https://github.com/astral-sh/ruff) | `0.6.4` | `0.6.8` |
| [sphinx-autobuild](https://github.com/sphinx-doc/sphinx-autobuild) | `2024.9.3` | `2024.9.19` |
| [sphinx-autodoc-typehints](https://github.com/tox-dev/sphinx-autodoc-typehints) | `2.4.0` | `2.4.4` |
| [pyarrow-stubs](https://github.com/zen-xu/pyarrow-stubs) | `17.2` | `17.6` |
| [types-setuptools](https://github.com/python/typeshed) | `74.1.0.20240907` | `75.1.0.20240917` |
| [aiohappyeyeballs](https://github.com/aio-libs/aiohappyeyeballs) | `2.4.0` | `2.4.3` |
| [aiohttp](https://github.com/aio-libs/aiohttp) | `3.10.5` | `3.10.8` |
| [alembic](https://github.com/sqlalchemy/alembic) | `1.13.2` | `1.13.3` |
| [anyio](https://github.com/agronholm/anyio) | `4.4.0` | `4.6.0` |
| [certipy](https://github.com/LLNL/certipy) | `0.1.3` | `0.2.1` |
| [debugpy](https://github.com/microsoft/debugpy) | `1.8.5` | `1.8.6` |
| [filelock](https://github.com/tox-dev/py-filelock) | `3.16.0` | `3.16.1` |
| [google-api-core](https://github.com/googleapis/python-api-core) | `2.19.2` | `2.20.0` |
| [google-auth](https://github.com/googleapis/google-auth-library-python) | `2.34.0` | `2.35.0` |
| [google-cloud-pubsub](https://github.com/googleapis/python-pubsub) | `2.23.1` | `2.25.2` |
| [greenlet](https://github.com/python-greenlet/greenlet) | `3.1.0` | `3.1.1` |
| [grpcio](https://github.com/grpc/grpc) | `1.66.1` | `1.66.2` |
| [grpcio-status](https://grpc.io) | `1.66.1` | `1.66.2` |
| [identify](https://github.com/pre-commit/identify) | `2.6.0` | `2.6.1` |
| [idna](https://github.com/kjd/idna) | `3.8` | `3.10` |
| [jupyter-client](https://github.com/jupyter/jupyter_client) | `8.6.2` | `8.6.3` |
| [jupyterhub](https://github.com/jupyterhub/jupyterhub) | `5.1.0` | `5.2.0` |
| [platformdirs](https://github.com/tox-dev/platformdirs) | `4.3.2` | `4.3.6` |
| [prometheus-client](https://github.com/prometheus/client_python) | `0.20.0` | `0.21.0` |
| [prompt-toolkit](https://github.com/prompt-toolkit/python-prompt-toolkit) | `3.0.47` | `3.0.48` |
| [protobuf](https://github.com/protocolbuffers/protobuf) | `5.28.0` | `5.28.2` |
| [pyasn1](https://github.com/pyasn1/pyasn1) | `0.6.0` | `0.6.1` |
| [pyasn1-modules](https://github.com/pyasn1/pyasn1-modules) | `0.4.0` | `0.4.1` |
| [pydantic-core](https://github.com/pydantic/pydantic-core) | `2.23.3` | `2.23.4` |
| [pytz](https://github.com/stub42/pytz) | `2024.1` | `2024.2` |
| [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) | `2.0.34` | `2.0.35` |
| [starlette](https://github.com/encode/starlette) | `0.38.5` | `0.39.2` |
| [types-pytz](https://github.com/python/typeshed) | `2024.1.0.20240417` | `2024.2.0.20240913` |
| [types-requests](https://github.com/python/typeshed) | `2.32.0.20240907` | `2.32.0.20240914` |
| [tzdata](https://github.com/python/tzdata) | `2024.1` | `2024.2` |
| [urllib3](https://github.com/urllib3/urllib3) | `2.2.2` | `2.2.3` |
| [uvicorn](https://github.com/encode/uvicorn) | `0.30.6` | `0.31.0` |
| [virtualenv](https://github.com/pypa/virtualenv) | `20.26.4` | `20.26.6` |
| [websockets](https://github.com/python-websockets/websockets) | `13.0.1` | `13.1` |
| [yarl](https://github.com/aio-libs/yarl) | `1.11.1` | `1.13.1` |


Updates `pydantic` from 2.9.1 to 2.9.2
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.9.1...v2.9.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 `faker` from 28.4.1 to 30.1.0
- [Release notes](https://github.com/joke2k/faker/releases)
- [Changelog](https://github.com/joke2k/faker/blob/master/CHANGELOG.md)
- [Commits](joke2k/faker@v28.4.1...v30.1.0)

Updates `ruff` from 0.6.4 to 0.6.8
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.6.4...0.6.8)

Updates `sphinx-autobuild` from 2024.9.3 to 2024.9.19
- [Release notes](https://github.com/sphinx-doc/sphinx-autobuild/releases)
- [Changelog](https://github.com/sphinx-doc/sphinx-autobuild/blob/main/NEWS.rst)
- [Commits](sphinx-doc/sphinx-autobuild@2024.09.03...2024.09.19)

Updates `sphinx-autodoc-typehints` from 2.4.0 to 2.4.4
- [Release notes](https://github.com/tox-dev/sphinx-autodoc-typehints/releases)
- [Changelog](https://github.com/tox-dev/sphinx-autodoc-typehints/blob/main/CHANGELOG.md)
- [Commits](tox-dev/sphinx-autodoc-typehints@2.4.0...2.4.4)

Updates `pyarrow-stubs` from 17.2 to 17.6
- [Release notes](https://github.com/zen-xu/pyarrow-stubs/releases)
- [Commits](zen-xu/pyarrow-stubs@17.2...17.6)

Updates `types-setuptools` from 74.1.0.20240907 to 75.1.0.20240917
- [Commits](https://github.com/python/typeshed/commits)

Updates `aiohappyeyeballs` from 2.4.0 to 2.4.3
- [Release notes](https://github.com/aio-libs/aiohappyeyeballs/releases)
- [Changelog](https://github.com/aio-libs/aiohappyeyeballs/blob/main/CHANGELOG.md)
- [Commits](aio-libs/aiohappyeyeballs@v2.4.0...v2.4.3)

Updates `aiohttp` from 3.10.5 to 3.10.8
- [Release notes](https://github.com/aio-libs/aiohttp/releases)
- [Changelog](https://github.com/aio-libs/aiohttp/blob/master/CHANGES.rst)
- [Commits](aio-libs/aiohttp@v3.10.5...v3.10.8)

Updates `alembic` from 1.13.2 to 1.13.3
- [Release notes](https://github.com/sqlalchemy/alembic/releases)
- [Changelog](https://github.com/sqlalchemy/alembic/blob/main/CHANGES)
- [Commits](https://github.com/sqlalchemy/alembic/commits)

Updates `anyio` from 4.4.0 to 4.6.0
- [Release notes](https://github.com/agronholm/anyio/releases)
- [Changelog](https://github.com/agronholm/anyio/blob/master/docs/versionhistory.rst)
- [Commits](agronholm/anyio@4.4.0...4.6.0)

Updates `certipy` from 0.1.3 to 0.2.1
- [Commits](https://github.com/LLNL/certipy/commits)

Updates `debugpy` from 1.8.5 to 1.8.6
- [Release notes](https://github.com/microsoft/debugpy/releases)
- [Commits](microsoft/debugpy@v1.8.5...v1.8.6)

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

Updates `google-api-core` from 2.19.2 to 2.20.0
- [Release notes](https://github.com/googleapis/python-api-core/releases)
- [Changelog](https://github.com/googleapis/python-api-core/blob/main/CHANGELOG.md)
- [Commits](googleapis/python-api-core@v2.19.2...v2.20.0)

Updates `google-auth` from 2.34.0 to 2.35.0
- [Release notes](https://github.com/googleapis/google-auth-library-python/releases)
- [Changelog](https://github.com/googleapis/google-auth-library-python/blob/main/CHANGELOG.md)
- [Commits](googleapis/google-auth-library-python@v2.34.0...v2.35.0)

Updates `google-cloud-pubsub` from 2.23.1 to 2.25.2
- [Release notes](https://github.com/googleapis/python-pubsub/releases)
- [Changelog](https://github.com/googleapis/python-pubsub/blob/main/CHANGELOG.md)
- [Commits](googleapis/python-pubsub@v2.23.1...v2.25.2)

Updates `greenlet` from 3.1.0 to 3.1.1
- [Changelog](https://github.com/python-greenlet/greenlet/blob/master/CHANGES.rst)
- [Commits](python-greenlet/greenlet@3.1.0...3.1.1)

Updates `grpcio` from 1.66.1 to 1.66.2
- [Release notes](https://github.com/grpc/grpc/releases)
- [Changelog](https://github.com/grpc/grpc/blob/master/doc/grpc_release_schedule.md)
- [Commits](grpc/grpc@v1.66.1...v1.66.2)

Updates `grpcio-status` from 1.66.1 to 1.66.2

Updates `identify` from 2.6.0 to 2.6.1
- [Commits](pre-commit/identify@v2.6.0...v2.6.1)

Updates `idna` from 3.8 to 3.10
- [Release notes](https://github.com/kjd/idna/releases)
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst)
- [Commits](kjd/idna@v3.8...v3.10)

Updates `jupyter-client` from 8.6.2 to 8.6.3
- [Release notes](https://github.com/jupyter/jupyter_client/releases)
- [Changelog](https://github.com/jupyter/jupyter_client/blob/main/CHANGELOG.md)
- [Commits](jupyter/jupyter_client@v8.6.2...v8.6.3)

Updates `jupyterhub` from 5.1.0 to 5.2.0
- [Changelog](https://github.com/jupyterhub/jupyterhub/blob/main/RELEASE.md)
- [Commits](jupyterhub/jupyterhub@5.1.0...5.2.0)

Updates `platformdirs` from 4.3.2 to 4.3.6
- [Release notes](https://github.com/tox-dev/platformdirs/releases)
- [Changelog](https://github.com/tox-dev/platformdirs/blob/main/CHANGES.rst)
- [Commits](tox-dev/platformdirs@4.3.2...4.3.6)

Updates `prometheus-client` from 0.20.0 to 0.21.0
- [Release notes](https://github.com/prometheus/client_python/releases)
- [Commits](prometheus/client_python@v0.20.0...v0.21.0)

Updates `prompt-toolkit` from 3.0.47 to 3.0.48
- [Release notes](https://github.com/prompt-toolkit/python-prompt-toolkit/releases)
- [Changelog](https://github.com/prompt-toolkit/python-prompt-toolkit/blob/master/CHANGELOG)
- [Commits](prompt-toolkit/python-prompt-toolkit@3.0.47...3.0.48)

Updates `protobuf` from 5.28.0 to 5.28.2
- [Release notes](https://github.com/protocolbuffers/protobuf/releases)
- [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl)
- [Commits](protocolbuffers/protobuf@v5.28.0...v5.28.2)

Updates `pyasn1` from 0.6.0 to 0.6.1
- [Release notes](https://github.com/pyasn1/pyasn1/releases)
- [Changelog](https://github.com/pyasn1/pyasn1/blob/main/CHANGES.rst)
- [Commits](pyasn1/pyasn1@v0.6.0...v0.6.1)

Updates `pyasn1-modules` from 0.4.0 to 0.4.1
- [Release notes](https://github.com/pyasn1/pyasn1-modules/releases)
- [Changelog](https://github.com/pyasn1/pyasn1-modules/blob/main/CHANGES.txt)
- [Commits](pyasn1/pyasn1-modules@v0.4.0...v0.4.1)

Updates `pydantic-core` from 2.23.3 to 2.23.4
- [Release notes](https://github.com/pydantic/pydantic-core/releases)
- [Commits](pydantic/pydantic-core@v2.23.3...v2.23.4)

Updates `pytz` from 2024.1 to 2024.2
- [Release notes](https://github.com/stub42/pytz/releases)
- [Commits](stub42/pytz@release_2024.1...release_2024.2)

Updates `sqlalchemy` from 2.0.34 to 2.0.35
- [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 `starlette` from 0.38.5 to 0.39.2
- [Release notes](https://github.com/encode/starlette/releases)
- [Changelog](https://github.com/encode/starlette/blob/master/docs/release-notes.md)
- [Commits](encode/starlette@0.38.5...0.39.2)

Updates `types-pytz` from 2024.1.0.20240417 to 2024.2.0.20240913
- [Commits](https://github.com/python/typeshed/commits)

Updates `types-requests` from 2.32.0.20240907 to 2.32.0.20240914
- [Commits](https://github.com/python/typeshed/commits)

Updates `tzdata` from 2024.1 to 2024.2
- [Release notes](https://github.com/python/tzdata/releases)
- [Changelog](https://github.com/python/tzdata/blob/master/NEWS.md)
- [Commits](python/tzdata@2024.1...2024.2)

Updates `urllib3` from 2.2.2 to 2.2.3
- [Release notes](https://github.com/urllib3/urllib3/releases)
- [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst)
- [Commits](urllib3/urllib3@2.2.2...2.2.3)

Updates `uvicorn` from 0.30.6 to 0.31.0
- [Release notes](https://github.com/encode/uvicorn/releases)
- [Changelog](https://github.com/encode/uvicorn/blob/master/CHANGELOG.md)
- [Commits](encode/uvicorn@0.30.6...0.31.0)

Updates `virtualenv` from 20.26.4 to 20.26.6
- [Release notes](https://github.com/pypa/virtualenv/releases)
- [Changelog](https://github.com/pypa/virtualenv/blob/main/docs/changelog.rst)
- [Commits](pypa/virtualenv@20.26.4...20.26.6)

Updates `websockets` from 13.0.1 to 13.1
- [Release notes](https://github.com/python-websockets/websockets/releases)
- [Commits](python-websockets/websockets@13.0.1...13.1)

Updates `yarl` from 1.11.1 to 1.13.1
- [Release notes](https://github.com/aio-libs/yarl/releases)
- [Changelog](https://github.com/aio-libs/yarl/blob/master/CHANGES.rst)
- [Commits](aio-libs/yarl@v1.11.1...v1.13.1)

---
updated-dependencies:
- dependency-name: pydantic
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: pandas
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: faker
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: poetry-dependencies
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: sphinx-autobuild
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: sphinx-autodoc-typehints
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: pyarrow-stubs
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: types-setuptools
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: poetry-dependencies
- dependency-name: aiohappyeyeballs
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: aiohttp
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: alembic
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: anyio
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: certipy
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: debugpy
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: filelock
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: google-api-core
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: google-auth
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: google-cloud-pubsub
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: greenlet
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: grpcio
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: grpcio-status
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: identify
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: idna
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: jupyter-client
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: jupyterhub
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: platformdirs
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: prometheus-client
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: prompt-toolkit
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: protobuf
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: pyasn1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: pyasn1-modules
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: pydantic-core
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: pytz
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: sqlalchemy
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: starlette
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: types-pytz
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: types-requests
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: tzdata
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: urllib3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: uvicorn
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: virtualenv
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: poetry-dependencies
- dependency-name: websockets
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
- dependency-name: yarl
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: poetry-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner October 1, 2024 18:26
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Oct 1, 2024
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.

0 participants