Skip to content

Commit

Permalink
Merge pull request #6 from maykinmedia/feature/python310
Browse files Browse the repository at this point in the history
➕ Bring back support for python3.10
  • Loading branch information
stevenbal authored Mar 1, 2024
2 parents 1590bfc + f90d25f commit fde3e67
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.9', '3.11', '3.12']
python: ['3.9', '3.10', '3.11', '3.12']
django: ['3.2', '4.2']

name: Run the test suite (Python ${{ matrix.python }}, Django ${{ matrix.django }})
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Installation
Requirements
------------

* Python 3.9/3.11 or above
* Python 3.9 or above
* Django 3.2/4.2 or newer


Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{39}-django{3.2}
py{39,310}-django{3.2}
py{310,311,312}-django{42}
isort
black
Expand All @@ -11,6 +11,7 @@ skip_missing_interpreters = true
[gh-actions]
python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312

Expand Down

0 comments on commit fde3e67

Please sign in to comment.