Skip to content

Commit 30b23a3

Browse files
Rebranding and classifier fix (#34)
Rebrand to the description "Call asynchronous code from an extension module," and add the 3.13 classifier (and removed 3.8).
1 parent a814cef commit 30b23a3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# PyAwaitable
22

3-
## CPython API for asynchronous functions
3+
## Call asynchronous code from an extension module
44

55
![Tests](https://github.com/ZeroIntensity/pyawaitable/actions/workflows/tests.yml/badge.svg)
66
![Memory Check](https://github.com/ZeroIntensity/pyawaitable/actions/workflows/memory_check.yml/badge.svg)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ readme = "README.md"
1111
license = { file = "LICENSE" }
1212
classifiers = [
1313
"Programming Language :: Python",
14-
"Programming Language :: Python :: 3.8",
1514
"Programming Language :: Python :: 3.9",
1615
"Programming Language :: Python :: 3.10",
1716
"Programming Language :: Python :: 3.11",
1817
"Programming Language :: Python :: 3.12",
18+
"Programming Language :: Python :: 3.13",
1919
"Programming Language :: Python :: Implementation :: CPython",
2020
]
2121
dependencies = []

src/pyawaitable/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""
2-
PyAwaitable - CPython API for asynchronous functions.
2+
PyAwaitable - Call asynchronous code from an extension module.
33
44
Docs: https://awaitable.zintensity.dev/
55
Source: https://github.com/ZeroIntensity/pyawaitable

0 commit comments

Comments
 (0)