From dee4649be94b5a3468035801a7226f74bb6757ce Mon Sep 17 00:00:00 2001 From: Tiago Silva Date: Thu, 9 Jan 2025 10:54:30 +0000 Subject: [PATCH] Release 0.12.0 (#128) --- docs/en/docs/release-notes.md | 1 + lilya/__init__.py | 2 +- pyproject.toml | 2 ++ tests/environments/__init__.py | 0 tests/{ => environments}/test_environments.py | 0 5 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 tests/environments/__init__.py rename tests/{ => environments}/test_environments.py (100%) diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 915b193..92c1593 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -9,6 +9,7 @@ hide: ### Added +- Support for Python 3.13. - Add `ReceiveSendSniffer`. This sniffer allows to detect communication events and to replay receive messages. - `Include` and `BaseLilya` (application) have now a ClassVar `router_class` to provide a custom router. - Subclasses of `BaseLilya` (application) can set the `router_class` to None to provide a completely custom router diff --git a/lilya/__init__.py b/lilya/__init__.py index 14a3fb7..ea370a8 100644 --- a/lilya/__init__.py +++ b/lilya/__init__.py @@ -1 +1 @@ -__version__ = "0.11.11" +__version__ = "0.12.0" diff --git a/pyproject.toml b/pyproject.toml index 3c4244b..7ebeccb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -33,6 +33,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Internet :: WWW/HTTP :: HTTP Servers", "Topic :: Internet :: WWW/HTTP", ] @@ -91,6 +92,7 @@ testing = [ "pytest-mock>=3.12.0", "python-multipart>=0.0.13", "mypy==1.10.0", + "pyyaml>=6.0,<7.0.0", "typing_extensions>=3.10.0", "ipython", "ptpython", diff --git a/tests/environments/__init__.py b/tests/environments/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/test_environments.py b/tests/environments/test_environments.py similarity index 100% rename from tests/test_environments.py rename to tests/environments/test_environments.py