diff --git a/.github/workflows/test-suite.yml b/.github/workflows/test-suite.yml index 347231a..70880f2 100644 --- a/.github/workflows/test-suite.yml +++ b/.github/workflows/test-suite.yml @@ -20,7 +20,7 @@ jobs: runs-on: "ubuntu-latest" strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12"] services: mongodb: diff --git a/docs/en/docs/release-notes.md b/docs/en/docs/release-notes.md index 7ed0c6f..bd0b3d4 100644 --- a/docs/en/docs/release-notes.md +++ b/docs/en/docs/release-notes.md @@ -1,5 +1,11 @@ # Release Notes +## Unreleased + +### Changed + +- Remove support for Python 3.11. + ## 0.10.8 ### Added diff --git a/pyproject.toml b/pyproject.toml index ecc15c2..e833662 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "mongoz" description = "ODM with pydantic made it simple" long_description = "ODM with pydantic made it simple" readme = "README.md" -requires-python = ">=3.8" +requires-python = ">=3.9" dynamic = ['version'] license = "MIT" authors = [{ name = "Tiago Silva", email = "tiago.arasivla@gmail.com" }] @@ -30,7 +30,6 @@ classifiers = [ "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11",