Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 16, 2025

Bumps the dependencies group with 14 updates in the / directory:

Package From To
pytest 8.3.5 8.4.0
pytest-postgresql 7.0.1 7.0.2
pytest-cov 6.1.1 6.2.1
requests 2.32.3 2.32.4
sympy 1.13.3 1.14.0
pandas 2.2.3 2.3.0
psycopg[binary] 3.2.6 3.2.9
sqlalchemy 2.0.40 2.0.41
pydantic 2.11.2 2.11.7
pydantic-settings 2.8.1 2.9.1
uvicorn[standard] 0.34.0 0.34.3
pendulum 3.0.0 3.1.0
cython 3.0.12 3.1.2
setuptools 78.1.0 80.9.0

Updates pytest from 8.3.5 to 8.4.0

Release notes

Sourced from pytest's releases.

8.4.0

pytest 8.4.0 (2025-06-02)

Removals and backward incompatible breaking changes

  • #11372: Async tests will now fail, instead of warning+skipping, if you don't have any suitable plugin installed.

  • #12346: Tests will now fail, instead of raising a warning, if they return any value other than None.

  • #12874: We dropped support for Python 3.8 following its end of life (2024-10-07).

  • #12960: Test functions containing a yield now cause an explicit error. They have not been run since pytest 4.0, and were previously marked as an expected failure and deprecation warning.

    See the docs <yield tests deprecated>{.interpreted-text role="ref"} for more information.

Deprecations (removal in next major release)

  • #10839: Requesting an asynchronous fixture without a [pytest_fixture_setup]{.title-ref} hook that resolves it will now give a DeprecationWarning. This most commonly happens if a sync test requests an async fixture. This should have no effect on a majority of users with async tests or fixtures using async pytest plugins, but may affect non-standard hook setups or autouse=True. For guidance on how to work around this warning see sync-test-async-fixture{.interpreted-text role="ref"}.

New features

  • #11538: Added pytest.RaisesGroup{.interpreted-text role="class"} as an equivalent to pytest.raises{.interpreted-text role="func"} for expecting ExceptionGroup{.interpreted-text role="exc"}. Also adds pytest.RaisesExc{.interpreted-text role="class"} which is now the logic behind pytest.raises{.interpreted-text role="func"} and used as parameter to pytest.RaisesGroup{.interpreted-text role="class"}. RaisesGroup includes the ability to specify multiple different expected exceptions, the structure of nested exception groups, and flags for emulating except* <except_star>{.interpreted-text role="ref"}. See assert-matching-exception-groups{.interpreted-text role="ref"} and docstrings for more information.

  • #12081: Added capteesys{.interpreted-text role="fixture"} to capture AND pass output to next handler set by --capture=.

  • #12504: pytest.mark.xfail{.interpreted-text role="func"} now accepts pytest.RaisesGroup{.interpreted-text role="class"} for the raises parameter when you expect an exception group. You can also pass a pytest.RaisesExc{.interpreted-text role="class"} if you e.g. want to make use of the check parameter.

  • #12713: New [--force-short-summary]{.title-ref} option to force condensed summary output regardless of verbosity level.

    This lets users still see condensed summary output of failures for quick reference in log files from job outputs, being especially useful if non-condensed output is very verbose.

  • #12749: pytest traditionally collects classes/functions in the test module namespace even if they are imported from another file.

    For example:

    # contents of src/domain.py
    class Testament: ...
    contents of tests/test_testament.py
    from domain import Testament
    def test_testament(): ...

    In this scenario with the default options, pytest will collect the class [Testament]{.title-ref} from [tests/test_testament.py]{.title-ref} because it starts with [Test]{.title-ref}, even though in this case it is a production class being imported in the test module namespace.

    This behavior can now be prevented by setting the new collect_imported_tests{.interpreted-text role="confval"} configuration option to false, which will make pytest collect classes/functions from test files only if they are defined in that file.

... (truncated)

Commits
  • 315b3ae Prepare release version 8.4.0
  • 1498ba3 Merge pull request #13467 from pytest-dev/towncrier-create
  • e4389ac Remove resultlog from the docs (#13465)
  • 64b2301 scripts/release: add missing build to towncrier call
  • 4c205cf testing/plugins_integration: update Django (#13463)
  • 4dcbcc9 Merge pull request #13458 from pytest-dev/dup-param-error
  • 5293016 Merge pull request #13459 from pytest-dev/pyright-minor-fixes
  • 7a48181 Add pyright configuration
  • 9fc6db9 pytester: avoid confusing x self parameter
  • 9aa198b mark/expression: fix self -> cls
  • Additional commits viewable in compare view

Updates pytest-postgresql from 7.0.1 to 7.0.2

Changelog

Sourced from pytest-postgresql's changelog.

7.0.2 (2025-05-17)

Bugfixes

  • Fix an issue where number of search counts has been hard-default set to 5 by command-line default and ini setting could not override it. ([#1115](https://github.com/dbfixtures/pytest-postgresql/issues/1115) <https://github.com/dbfixtures/pytest-postgresql/issues/1115>__)

  • Update minimum required pytest version to 7.2

    Additionally added test run of pytest-postgresql against oldest supported versions. ([#1131](https://github.com/dbfixtures/pytest-postgresql/issues/1131) <https://github.com/dbfixtures/pytest-postgresql/issues/1131>__)

Miscellaneus

  • Different approach to oldest requirements file. Trying to get dependabot off of it.
  • Test pipeline optimisations
Commits
  • 84e0c9d Release 7.0.2
  • 9e25533 Merge pull request #1145 from dbfixtures/diff-oldest
  • 9653967 Merge pull request #1143 from dbfixtures/dependabot/github_actions/codecov/co...
  • 27db090 Rename requirements.txt to requirements.rq
  • 9e688a1 build(deps): bump fizyk/actions-reuse from 3.0.2 to 3.1.0
  • b897e8e build(deps): bump codecov/codecov-action from 5.4.2 to 5.4.3
  • 336b2c0 build(deps): bump fizyk/actions-reuse from 3.0.2 to 3.1.0
  • 4f82c8c Update dependabot pip configuration
  • 73b0f14 Merge pull request #1140 from dbfixtures/simplify-tests
  • 60d594d build(deps-dev): bump types-setuptools
  • Additional commits viewable in compare view

Updates pytest-cov from 6.1.1 to 6.2.1

Changelog

Sourced from pytest-cov's changelog.

6.2.1 (2025-06-12)

  • Added a version requirement for pytest's pluggy dependency (1.2.0, released 2023-06-21) that has the required new-style hookwrapper API.

  • Removed deprecated license classifier (packaging).

  • Disabled coverage warnings in two more situations where they have no value:

    • "module-not-measured" in workers
    • "already-imported" in subprocesses

6.2.0 (2025-06-11)

  • The plugin now adds 3 rules in the filter warnings configuration to prevent common coverage warnings being raised as obscure errors::

    default:unclosed database in <sqlite3.Connection object at:ResourceWarning once::PytestCovWarning once::CoverageWarning

    This fixes most of the bad interactions that are occurring on pytest 8.4 with filterwarnings=error.

    The plugin will check if there already matching rules for the 3 categories (ResourceWarning, PytestCovWarning, CoverageWarning) and message (unclosed database in <sqlite3.Connection object at) before adding the filters.

    This means you can have this in your pytest configuration for complete oblivion (not recommended, if that is not clear)::

    filterwarnings = [ "error", "ignore:unclosed database in <sqlite3.Connection object at:ResourceWarning", "ignore::PytestCovWarning", "ignore::CoverageWarning", ]

Commits
  • 55dbe43 Bump version: 6.2.0 → 6.2.1
  • d17e9b7 Update changelog.
  • 8964ab7 Add a note for this warning disable.
  • e932e41 Prevent unimported warnings @ pytest-xdist workers
  • 573379b Bring pytest-cov's suprocess management in line with coverage's process_start...
  • f1884e8 Fix xdist pin.
  • 512c669 Added minium version requirements for pluggin (for new-style hookwrappers). P...
  • 629ba64 Remove deprecated license classifier.
  • dca5723 Bump version: 6.1.1 → 6.2.0
  • f69166a Also trigger the sqlite warning.
  • Additional commits viewable in compare view

Updates requests from 2.32.3 to 2.32.4

Release notes

Sourced from requests's releases.

v2.32.4

2.32.4 (2025-06-10)

Security

  • CVE-2024-47081 Fixed an issue where a maliciously crafted URL and trusted environment will retrieve credentials for the wrong hostname/machine from a netrc file. (#6965)

Improvements

  • Numerous documentation improvements

Deprecations

  • Added support for pypy 3.11 for Linux and macOS. (#6926)
  • Dropped support for pypy 3.9 following its end of support. (#6926)
Changelog

Sourced from requests's changelog.

2.32.4 (2025-06-10)

Security

  • CVE-2024-47081 Fixed an issue where a maliciously crafted URL and trusted environment will retrieve credentials for the wrong hostname/machine from a netrc file.

Improvements

  • Numerous documentation improvements

Deprecations

  • Added support for pypy 3.11 for Linux and macOS.
  • Dropped support for pypy 3.9 following its end of support.
Commits
  • 021dc72 Polish up release tooling for last manual release
  • 821770e Bump version and add release notes for v2.32.4
  • 59f8aa2 Add netrc file search information to authentication documentation (#6876)
  • 5b4b64c Add more tests to prevent regression of CVE 2024 47081
  • 7bc4587 Add new test to check netrc auth leak (#6962)
  • 96ba401 Only use hostname to do netrc lookup instead of netloc
  • 7341690 Merge pull request #6951 from tswast/patch-1
  • 6716d7c remove links
  • a7e1c74 Update docs/conf.py
  • c799b81 docs: fix dead links to kenreitz.org
  • Additional commits viewable in compare view

Updates sympy from 1.13.3 to 1.14.0

Commits
  • 16fa855 Merge pull request #28004 from oscarbenjamin/pr_bump_version_114
  • 597028e release: bump version to 1.14.0 final
  • db82759 Merge pull request #27996 from oscarbenjamin/pr_27994_114_backport
  • 9861163 release: bump version to 1.14.0rc2
  • d114acf Revert passing init_printing settings to the pretty printer
  • 7f50681 Merge pull request #27970 from oscarbenjamin/pr_benchmarks_114
  • 1721b69 maint(ci): fix paths in action
  • fa12f64 maint(ci): fix benchmarks on 1.14 branch
  • 2b73e0c Merge pull request #27960 from oscarbenjamin/pr_pin_mpmath
  • a66be8c maint(ci): use Python 3.12 for flint==0.6.0
  • Additional commits viewable in compare view

Updates pandas from 2.2.3 to 2.3.0

Release notes

Sourced from pandas's releases.

Pandas 2.3.0

We are pleased to announce the release of pandas 2.3.0. 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.3.0 supports Python 3.10 and higher.

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

conda install -c conda-forge 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 psycopg[binary] from 3.2.6 to 3.2.9

Changelog

Sourced from psycopg[binary]'s changelog.

.. currentmodule:: psycopg

.. index:: single: Release notes single: News

psycopg release notes

Future releases

Psycopg 3.3.0 (unreleased) ^^^^^^^^^^^^^^^^^^^^^^^^^^

  • Cursors are now iterators, not only iterables. This means you can call next(cur) to fetch the next row (:ticket:[#1064](https://github.com/psycopg/psycopg/issues/1064)).
  • Drop support for Python 3.8 (:ticket:[#976](https://github.com/psycopg/psycopg/issues/976)) and 3.9 (:ticket:[#1056](https://github.com/psycopg/psycopg/issues/1056)).

Current release

Psycopg 3.2.9 ^^^^^^^^^^^^^

  • Revert the libpq included in the binary packages from conda forge to vcpkg because GSS connection crashes (:ticket:[#1088](https://github.com/psycopg/psycopg/issues/1088)).

Psycopg 3.2.8 ^^^^^^^^^^^^^

  • Fix DateFromTicks and TimeFromTicks return values to return a date and a time referred to the UTC timezone rather than to the local timezone. For consistency, TimestampFromTicks to return a datetime in UTC rather than in the local timezone (:ticket:[#1058](https://github.com/psycopg/psycopg/issues/1058)).
  • Fix ~Cursor.rownumber after using ~AsyncServerCursor.scroll() on AsyncServerCursor (:ticket:[#1066](https://github.com/psycopg/psycopg/issues/1066)).
  • Fix interval parsing with days or other parts and negative time in C module (:ticket:[#1071](https://github.com/psycopg/psycopg/issues/1071)).
  • Don't process further connection attempts after Ctrl-C (:ticket:[#1077](https://github.com/psycopg/psycopg/issues/1077)).
  • Fix cursors to correctly iterate over rows even if their row factory returns None (:ticket:[#1073](https://github.com/psycopg/psycopg/issues/1073)).
  • Fix ConnectionInfo.port when the port is specified as an empty string (:ticket:[#1078](https://github.com/psycopg/psycopg/issues/1078)).
  • Report all the attempts error messages in the exception raised for a connection failure (:ticket:[#1069](https://github.com/psycopg/psycopg/issues/1069)).
  • Improve logging on connection (:ticket:[#1085](https://github.com/psycopg/psycopg/issues/1085)).
  • Add support for PostgreSQL 18 libpq (:ticket:[#1082](https://github.com/psycopg/psycopg/issues/1082)).

... (truncated)

Commits
  • dfce629 chore: bump psycopg package version to 3.2.9
  • 4e97cef Merge branch 'fix-1088' into maint-3.2
  • c182002 docs: mention fix in version 3.2.9
  • 1619579 Revert "ci: install win32 libpq from conda force"
  • 19a6e3d chore: bump psycopg package version to 3.2.9.dev1
  • 5b0a5c0 chore: bump psycopg package version to 3.2.8
  • d5ff770 ci: make sure versions are strings, not floats
  • b5ba0d9 chore: add funding link to project metadata
  • 1e6dfd1 fix(c): fix building on 32 bit with libpq 18
  • 8b9e4bf chore(binary): bump OpenSSL to 3.5.0
  • Additional commits viewable in compare view

Updates sqlalchemy from 2.0.40 to 2.0.41

Release notes

Sourced from sqlalchemy's releases.

2.0.41

Released: May 14, 2025

platform

  • [platform] [bug] Adjusted the test suite as well as the ORM's method of scanning classes for annotations to work under current beta releases of Python 3.14 (currently 3.14.0b1) as part of an ongoing effort to support the production release of this Python release. Further changes to Python's means of working with annotations is expected in subsequent beta releases for which SQLAlchemy's test suite will need further adjustments.

    References: #12405

engine

  • [engine] [bug] The error message that is emitted when a URL cannot be parsed no longer includes the URL itself within the error message.

    References: #12579

typing

  • [typing] [bug] Removed __getattr__() rule from sqlalchemy/__init__.py that appeared to be trying to correct for a previous typographical error in the imports. This rule interferes with type checking and is removed.

    References: #12588

postgresql

  • [postgresql] [usecase] Added support for postgresql_include keyword argument to _schema.UniqueConstraint and _schema.PrimaryKeyConstraint. Pull request courtesy Denis Laxalde.

    References: #10665

mysql

  • [mysql] [bug] Fixed regression caused by the DEFAULT rendering changes in version 2.0.40 via #12425 where using lowercase on update in a MySQL server default would incorrectly apply parenthesis, leading to errors when MySQL interpreted the rendered DDL. Pull request courtesy Alexander Ruehe.

... (truncated)

Commits

Updates pydantic from 2.11.2 to 2.11.7

Release notes

Sourced from pydantic's releases.

v2.11.7 2025-06-14

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.11.6...v2.11.7

v2.11.6 2025-06-13

v2.11.6 (2025-06-13)

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.11.5...v2.11.6

v2.11.5 2025-05-22

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.11.4...v2.11.5

v2.11.4 2025-04-29

What's Changed

Packaging

Changes

  • Allow config and bases to be specified together in create_model() by @​Viicos in #11714. This change was backported as it was previously possible (although not meant to be supported) to provide model_config as a field, which would make it possible to provide both configuration and bases.

Fixes

... (truncated)

Changelog

Sourced from pydantic's changelog.

v2.11.7 (2025-06-14)

GitHub release

What's Changed

Fixes

  • Copy FieldInfo instance if necessary during FieldInfo build by @​Viicos in #11898

v2.11.6 (2025-06-13)

GitHub release

What's Changed

Fixes

v2.11.5 (2025-05-22)

GitHub release

What's Changed

Fixes

v2.11.4 (2025-04-29)

GitHub release

What's Changed

Packaging

Changes

  • Allow config and bases to be specified together in create_model() by @​Viicos in #11714. This change was backported as it was previously possible (although not meant to be supported) to provide model_config as a field, which would make it possible to provide both configuration and bases.

... (truncated)

Commits
  • 5f033e4 Prepare release v2.11.7
  • c3368b8 Copy FieldInfo instance if necessary during FieldInfo build (#11980)
  • 3987b23 Prepare release v2.11.6
  • dc7a9d2 Always store the original field assignment on FieldInfo
  • c284c27 Rebuild dataclass fields before schema generation
  • 5e6d1dc Prepare release v2.11.5
  • 1b63218 Do not duplicate metadata on model rebuild (#11902)
  • 5aefad8 Do not delete mock validator/serializer in model_rebuild()
  • 8fbe658 Check if FieldInfo is complete after applying type variable map
  • 12b371a Update documentation about @dataclass_transform support
  • Additional commits viewable in compare view

Updates pydantic-settings from 2.8.1 to 2.9.1

Release notes

Sourced from pydantic-settings's releases.

v2.9.1

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-settings@v2.9.0...v2.9.1

v2.9.0

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-settings@v2.8.1...v2.9.0

Commits

Updates uvicorn[standard] from 0.34.0 to 0.34.3

Release notes

Sourced from uvicorn[standard]'s releases.

Verrsion 0.34.3

What's Changed

New Contributors

Full Changelog: Kludex/uvicorn@0.34.2...0.34.3

Version 0.34.2

What's Changed

New Contributors

Full Changelog: Kludex/uvicorn@0.34.1...0.34.2

Version 0.34.1

What's Changed

New Contributors

Full Changelog: Kludex/uvicorn@0.34.0...0.34.1

Changelog

Sourced from uvicorn[standard]'s changelog.

0.34.3 (June 1, 2025)

Fixed

  • Don't include cwd() when non-empty --reload-dirs is passed (#2598)
  • Apply get_client_addr formatting to WebSocket logging (#2636)

0.34.2 (April 19, 2025)

Fixed

  • Flush stdout buffer on Windows to trigger reload (#2604)

0.34.1 (April 13, 2025)

Deprecated

  • Deprecate ServerState in the main module (#2581)
Commits

Updates pendulum from 3.0.0 to 3.1.0

Release notes

Sourced from pendulum's releases.

3.1.0

See CHANGELOG.md for details

Changelog

Sourced from pendulum's changelog.

[3.1.0] - 2025-04-19

Added

  • Added support for Python 3.13 #871

Changed

  • Removed support for Python 3.8 #863
  • Fixed pure Python wheels support #889
  • Fixed pendulum.tz.timezones() to use system tzdata #801
  • Fixed spelling of Kyiv #885
  • Fixed DeprecationWarning from utcfromtimestamp #887
  • Fixed parsing of invalid intervals #843

Locales

  • Added UA (Ukraine) locale #793
  • Added BG (Bulgarian) locale #812
  • Fixed KO (Korean) translations for before and after #858
Commits
  • e57ca8e Include missing file in the sdist (#895)
  • 104c700 Version bump (#894)
  • 85288e6 Fix release workflow (#893)
  • c3aca76 Pre-release changelog update (#892)
  • 4dbb137 Remove unnecessary duplicated sdist build
  • 15d4f1b Fix sed in release pipeline. (#890)
  • df18589 Fix noext builds and setup or Trusted publisher
  • 5bd4a1d Merge pull request #887 from Secrus/fromtimestamp-fix
  • 038d115 Fix DeprecationWarning for timezone-aware fromtimestamp
  • dcd9816 Merge pull request #886 from python-pendulum/dependabot/cargo/rust/pyo3-0.24.1
  • Additional commits viewable in compare view

Updates cython from 3.0.12 to 3.1.2

Release notes

Sourced from cython's releases.

3.1.2

No release notes provided.

3.1.1

No release notes provided.

3.1.0-1

No release notes provided.

3.1.0

No release notes provided.

3.1.0rc2

No release notes provided.

3.1.0rc1

No release notes provided.

3.1.0b1

No release notes provided.

3.1.0a1

3.1.0 alpha 1 (2024-11-08)

Features added

  • Support for freethreading builds of CPython 3.13 was added. It comes with a new directive freethreading_compatible=True to mark modules as free-threading compatible (Py_mod_gil). https://github.com/cython/cython/issues?q=label%3A"nogil+CPython" Patches by Lysandros Nikolaou and Nathan Goldbaum. (Github issue :issue:6162)

  • Support for monitoring Cython modules via sys.monitoring in CPython 3.13+ was added. For coverage reporting, this needs to be disabled with -DCYTHON_USE_SYS_MONITORING=0 as long as coverage.py does not support sys.monitoring for coverage plugins. (Github issue :issue:6144)

  • Many issues with the Limited C-API were resolved. It is now sufficient to define the macro Py_LIMITED_API to activate the support. https://github.com/cython/cython/issues?q=label%3A%22limited+api%22

  • Support for GraalPython was improved (but is still incomplete).

  • Several issues with the gdb support were resolved. Patches by Kent Slaney. (Github issues :issue:5955, :issue:5948)

  • typing.Union[SomeType, None] and SomeType | None are now understood and mean the same as typing.Optional[SomeType], allowing None in type checks.

... (truncated)

Changelog

Sourced from cython's changelog.

3.1.2 (2025-06-09)

Bugs fixed

  • Attribute lookups failed on the bool builtin type. (Github issue :issue:6905)

  • Type checks on or-ed union types could incorrectly return false. (Github issue :issue:Description has been truncated

…pdates

Bumps the dependencies group with 14 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [pytest](https://github.com/pytest-dev/pytest) | `8.3.5` | `8.4.0` |
| [pytest-postgresql](https://github.com/dbfixtures/pytest-postgresql) | `7.0.1` | `7.0.2` |
| [pytest-cov](https://github.com/pytest-dev/pytest-cov) | `6.1.1` | `6.2.1` |
| [requests](https://github.com/psf/requests) | `2.32.3` | `2.32.4` |
| [sympy](https://github.com/sympy/sympy) | `1.13.3` | `1.14.0` |
| [pandas](https://github.com/pandas-dev/pandas) | `2.2.3` | `2.3.0` |
| [psycopg[binary]](https://github.com/psycopg/psycopg) | `3.2.6` | `3.2.9` |
| [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) | `2.0.40` | `2.0.41` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.11.2` | `2.11.7` |
| [pydantic-settings](https://github.com/pydantic/pydantic-settings) | `2.8.1` | `2.9.1` |
| [uvicorn[standard]](https://github.com/encode/uvicorn) | `0.34.0` | `0.34.3` |
| [pendulum](https://github.com/sdispater/pendulum) | `3.0.0` | `3.1.0` |
| [cython](https://github.com/cython/cython) | `3.0.12` | `3.1.2` |
| [setuptools](https://github.com/pypa/setuptools) | `78.1.0` | `80.9.0` |



Updates `pytest` from 8.3.5 to 8.4.0
- [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.5...8.4.0)

Updates `pytest-postgresql` from 7.0.1 to 7.0.2
- [Changelog](https://github.com/dbfixtures/pytest-postgresql/blob/main/CHANGES.rst)
- [Commits](dbfixtures/pytest-postgresql@v7.0.1...v7.0.2)

Updates `pytest-cov` from 6.1.1 to 6.2.1
- [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-cov@v6.1.1...v6.2.1)

Updates `requests` from 2.32.3 to 2.32.4
- [Release notes](https://github.com/psf/requests/releases)
- [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md)
- [Commits](psf/requests@v2.32.3...v2.32.4)

Updates `sympy` from 1.13.3 to 1.14.0
- [Release notes](https://github.com/sympy/sympy/releases)
- [Commits](sympy/sympy@sympy-1.13.3...sympy-1.14.0)

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

Updates `psycopg[binary]` from 3.2.6 to 3.2.9
- [Changelog](https://github.com/psycopg/psycopg/blob/master/docs/news.rst)
- [Commits](psycopg/psycopg@3.2.6...3.2.9)

Updates `sqlalchemy` from 2.0.40 to 2.0.41
- [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 `pydantic` from 2.11.2 to 2.11.7
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.11.2...v2.11.7)

Updates `pydantic-settings` from 2.8.1 to 2.9.1
- [Release notes](https://github.com/pydantic/pydantic-settings/releases)
- [Commits](pydantic/pydantic-settings@v2.8.1...v2.9.1)

Updates `uvicorn[standard]` from 0.34.0 to 0.34.3
- [Release notes](https://github.com/encode/uvicorn/releases)
- [Changelog](https://github.com/encode/uvicorn/blob/master/docs/release-notes.md)
- [Commits](Kludex/uvicorn@0.34.0...0.34.3)

Updates `pendulum` from 3.0.0 to 3.1.0
- [Release notes](https://github.com/sdispater/pendulum/releases)
- [Changelog](https://github.com/python-pendulum/pendulum/blob/master/CHANGELOG.md)
- [Commits](python-pendulum/pendulum@3.0.0...3.1.0)

Updates `cython` from 3.0.12 to 3.1.2
- [Release notes](https://github.com/cython/cython/releases)
- [Changelog](https://github.com/cython/cython/blob/master/CHANGES.rst)
- [Commits](cython/cython@3.0.12...3.1.2)

Updates `setuptools` from 78.1.0 to 80.9.0
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](pypa/setuptools@v78.1.0...v80.9.0)

---
updated-dependencies:
- dependency-name: pytest
  dependency-version: 8.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pytest-postgresql
  dependency-version: 7.0.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pytest-cov
  dependency-version: 6.2.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: requests
  dependency-version: 2.32.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: sympy
  dependency-version: 1.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: pandas
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: psycopg[binary]
  dependency-version: 3.2.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: sqlalchemy
  dependency-version: 2.0.41
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pydantic
  dependency-version: 2.11.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pydantic-settings
  dependency-version: 2.9.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: uvicorn[standard]
  dependency-version: 0.34.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: pendulum
  dependency-version: 3.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: cython
  dependency-version: 3.1.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: setuptools
  dependency-version: 80.9.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
...

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 Jun 16, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 23, 2025

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

@dependabot dependabot bot closed this Jun 23, 2025
@dependabot dependabot bot deleted the dependabot/pip/main/dependencies-4b872c6f18 branch June 23, 2025 20:18
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