Skip to content

Commit 3d3e3e4

Browse files
committed
Bump to 5.0.0
1 parent d5c21f3 commit 3d3e3e4

File tree

5 files changed

+23
-14
lines changed

5 files changed

+23
-14
lines changed

CHANGES.rst

+22
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,28 @@ CHANGES
44

55
.. towncrier release notes start
66
7+
5.0.0 (2024-10-31)
8+
==================
9+
10+
Features
11+
--------
12+
13+
- Make ``asyncio_timeout`` fully compatible with the standard ``asyncio.Timeout`` but keep backward compatibility with existing ``asyncio_timeout.Timeout`` API. (`#422 <https://github.com/aio-libs/async-timeout/issues/422>`_)
14+
15+
16+
Improved Documentation
17+
----------------------
18+
19+
- On the `CHANGES/README.rst <https://github.com/aio-libs/async-timeout/tree/master/CHANGES/README.rst>`_ page,
20+
a link to the ``Towncrier philosophy`` has been fixed. (`#388 <https://github.com/aio-libs/async-timeout/issues/388>`_)
21+
22+
23+
Deprecations and Removals
24+
-------------------------
25+
26+
- Drop deprecated sync context manager support, use ``async with timeout(...): ...`` instead. (`#421 <https://github.com/aio-libs/async-timeout/issues/421>`_)
27+
28+
729
4.0.3 (2023-08-10)
830
==================
931

CHANGES/388.doc.rst

-2
This file was deleted.

CHANGES/421.removal.rst

-1
This file was deleted.

CHANGES/422.feature.rst

-1
This file was deleted.

setup.cfg

+1-10
Original file line numberDiff line numberDiff line change
@@ -28,23 +28,14 @@ classifiers =
2828
Programming Language :: Python
2929
Programming Language :: Python :: 3
3030
Programming Language :: Python :: 3 :: Only
31-
Programming Language :: Python :: 3.7
32-
Programming Language :: Python :: 3.8
33-
Programming Language :: Python :: 3.9
34-
Programming Language :: Python :: 3.10
35-
Programming Language :: Python :: 3.11
3631

3732
[options]
38-
python_requires = >=3.7
33+
python_requires = >=3.8
3934
packages =
4035
async_timeout
4136
zip_safe = True
4237
include_package_data = True
4338

44-
install_requires =
45-
typing_extensions>=3.6.5; python_version < "3.8"
46-
47-
4839
[flake8]
4940
exclude = .git,.env,__pycache__,.eggs
5041
max-line-length = 88

0 commit comments

Comments
 (0)