diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index db1bdef..7febb28 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -14,7 +14,7 @@ jobs: strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: "actions/checkout@v3" diff --git a/fastapi_storages/__init__.py b/fastapi_storages/__init__.py index d97bac9..d69d5cc 100644 --- a/fastapi_storages/__init__.py +++ b/fastapi_storages/__init__.py @@ -2,7 +2,7 @@ from .filesystem import FileSystemStorage from .s3 import S3Storage -__version__ = "0.2.0" +__version__ = "0.2.1" __all__ = [ "FileSystemStorage", "S3Storage", diff --git a/pyproject.toml b/pyproject.toml index 5eb08fd..ba20fbd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,6 +19,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Database", "Topic :: Database :: Database Engines/Servers", "Topic :: Internet",