Skip to content

Commit

Permalink
Rebranding and classifier fix (#34)
Browse files Browse the repository at this point in the history
Rebrand to the description "Call asynchronous code from an extension
module," and add the 3.13 classifier (and removed 3.8).
  • Loading branch information
ZeroIntensity authored Oct 26, 2024
1 parent a814cef commit 30b23a3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# PyAwaitable

## CPython API for asynchronous functions
## Call asynchronous code from an extension module

![Tests](https://github.com/ZeroIntensity/pyawaitable/actions/workflows/tests.yml/badge.svg)
![Memory Check](https://github.com/ZeroIntensity/pyawaitable/actions/workflows/memory_check.yml/badge.svg)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ readme = "README.md"
license = { file = "LICENSE" }
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
]
dependencies = []
Expand Down
2 changes: 1 addition & 1 deletion src/pyawaitable/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
PyAwaitable - CPython API for asynchronous functions.
PyAwaitable - Call asynchronous code from an extension module.
Docs: https://awaitable.zintensity.dev/
Source: https://github.com/ZeroIntensity/pyawaitable
Expand Down

0 comments on commit 30b23a3

Please sign in to comment.