From d26557bee3fedb422e7af47dd50e8d301926a3e4 Mon Sep 17 00:00:00 2001 From: Hugo Osvaldo Barrera Date: Mon, 26 Jun 2023 19:04:23 +0200 Subject: [PATCH] Python 3.10 and 3.11 are also supported We've been running 3.11 on CI for a while now. --- CHANGELOG.rst | 1 + docs/installation.rst | 2 +- setup.py | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index e05815a..91a6322 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -19,6 +19,7 @@ Version 0.19.2 "filesystem/icalendar"`` or ``type = "filesystem/vcard"``. This has not functional impact, and is merely for forward compatibility with the Rust implementation of vdirsyncer. +- Python 3.10 and 3.11 are officially supported. Version 0.19.1 ============== diff --git a/docs/installation.rst b/docs/installation.rst index 8cbca03..ae57ef1 100644 --- a/docs/installation.rst +++ b/docs/installation.rst @@ -42,7 +42,7 @@ If your distribution doesn't provide a package for vdirsyncer, you still can use Python's package manager "pip". First, you'll have to check that the following things are installed: -- Python 3.7+ and pip. +- Python 3.7 to 3.11 and pip. - ``libxml`` and ``libxslt`` - ``zlib`` - Linux or macOS. **Windows is not supported**, see :gh:`535`. diff --git a/setup.py b/setup.py index 609b0e5..0e8ba30 100644 --- a/setup.py +++ b/setup.py @@ -74,6 +74,8 @@ setup( "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "Topic :: Internet", "Topic :: Utilities", ],