Skip to content

Commit

Permalink
added Python 3.12 to the test matrix
Browse files Browse the repository at this point in the history
  • Loading branch information
evgkirov committed Oct 4, 2023
1 parent 595cebf commit 1712ce1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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']
Expand All @@ -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 }}
Expand Down
6 changes: 6 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"]
readme = "README.md"
Expand Down

0 comments on commit 1712ce1

Please sign in to comment.