diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4af00069..25796ef3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -43,7 +43,7 @@ jobs: strategy: matrix: os: [ubuntu-latest] - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] steps: - uses: actions/checkout@v3 @@ -97,7 +97,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - # https://docs.djangoproject.com/en/3.2/faq/install/#what-python-version-can-i-use-with-django + # https://docs.djangoproject.com/en/4.2/faq/install/#what-python-version-can-i-use-with-django # this is a bit excessive, probably should run only before # releasing new version python-version: ['3.7', '3.8', '3.9'] @@ -119,6 +119,8 @@ jobs: - python-version: '3.11' django-version: 4.2 + # no django versions that support py3.12 - as of 2023-10-04 + steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} diff --git a/HISTORY.md b/HISTORY.md index aa1e3eb6..1324e9dc 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -6,6 +6,12 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [4.1.3](https://github.com/uploadcare/pyuploadcare/compare/v4.1.2...v4.1.3) - 2023-10-05 + +### Changed + +- `pyuploadcare` now officially supports Python 3.12. + ## [4.1.2](https://github.com/uploadcare/pyuploadcare/compare/v4.1.1...v4.1.2) - 2023-09-08 ### Fixed diff --git a/pyproject.toml b/pyproject.toml index 5afe6047..ecbfa95e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pyuploadcare" -version = "4.1.2" +version = "4.1.3" description = "Python library for Uploadcare.com" authors = ["Uploadcare Inc "] readme = "README.md"