From 01d48515815b1cbedb6c7d7b72926795b043a16a Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sun, 9 Jun 2024 08:32:22 +0200 Subject: [PATCH 1/3] add Python 3.13 --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index 4096685cd..764493787 100644 --- a/setup.py +++ b/setup.py @@ -75,6 +75,7 @@ "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", "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Office/Business :: Groupware"]) From b1cf1f2e28997769998d7c2a78b81ae0a99602d7 Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Thu, 25 Jul 2024 16:04:11 +0200 Subject: [PATCH 2/3] add Python 3.13 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index f93922f81..32961e866 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,7 +6,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest, windows-latest] - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12.3', pypy-3.8, pypy-3.9] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12.3', '3.13.0-beta.4', pypy-3.8, pypy-3.9] exclude: - os: windows-latest python-version: pypy-3.8 From 7388a095f5a014d608eb01794988adbc187894ce Mon Sep 17 00:00:00 2001 From: Peter Bieringer Date: Sun, 4 Aug 2024 08:23:11 +0200 Subject: [PATCH 3/3] remove unused requirement "typeguard" --- CHANGELOG.md | 1 + setup.cfg | 1 - setup.py | 2 +- 3 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index beb6ea72c..a5c5a1de3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ ## 3.dev * Enhancement: remove unexpected control codes from uploaded items +* Drop: remove unused requirement "typeguard" ## 3.2.2 * Enhancement: add support for auth.type=denyall (will be default for security reasons in upcoming releases) diff --git a/setup.cfg b/setup.cfg index 9a5d3d82a..94a39915d 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,4 @@ [tool:pytest] -addopts = --typeguard-packages=radicale [tox:tox] min_version = 4.0 diff --git a/setup.py b/setup.py index 764493787..68e363989 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ "pika>=1.1.0", ] bcrypt_requires = ["bcrypt"] -test_requires = ["pytest>=7", "typeguard<4.3", "waitress", *bcrypt_requires] +test_requires = ["pytest>=7", "waitress", *bcrypt_requires] setup( name="Radicale",