Skip to content

Commit

Permalink
Added official Python 3.13 support (agronholm#765)
Browse files Browse the repository at this point in the history
  • Loading branch information
agronholm authored Aug 7, 2024
1 parent f8f2696 commit 8907964
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions docs/versionhistory.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ This library adheres to `Semantic Versioning 2.0 <http://semver.org/>`_.
(`#737 <https://github.com/agronholm/anyio/issues/737>`_)
- Changed the ``ResourceWarning`` from an unclosed memory object stream to include its
address for easier identification
- Bumped minimum version of Trio to v0.26.1
- 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>`_)
Expand Down
8 changes: 6 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">= 3.8"
dependencies = [
Expand All @@ -41,7 +42,7 @@ Changelog = "https://anyio.readthedocs.io/en/stable/versionhistory.html"
"Issue tracker" = "https://github.com/agronholm/anyio/issues"

[project.optional-dependencies]
trio = ["trio >= 0.23"]
trio = ["trio >= 0.26.1"]
test = [
"anyio[trio]",
"coverage[toml] >= 7",
Expand All @@ -51,7 +52,10 @@ test = [
"pytest >= 7.0",
"pytest-mock >= 3.6.1",
"trustme",
"uvloop >= 0.17; platform_python_implementation == 'CPython' and platform_system != 'Windows'",
"""\
uvloop >= 0.17; platform_python_implementation == 'CPython' \
and platform_system != 'Windows' and python_version < '3.13'\
"""
]
doc = [
"packaging",
Expand Down

0 comments on commit 8907964

Please sign in to comment.