Skip to content

Commit

Permalink
Merge pull request #402 from joke2k/feature/python-3.11
Browse files Browse the repository at this point in the history
Add support for Python 3.11
  • Loading branch information
sergeyklay committed Jun 21, 2022
2 parents 4e5c05c + aaf0377 commit 9c201d4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ jobs:
- '3.8'
- '3.9'
- '3.10'
- '3.11.0-beta.3 - 3.11.0'
- 'pypy-3.7'
os: [ ubuntu-latest, macos-latest, windows-latest ]

Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Added
`#356 <https://github.com/joke2k/django-environ/issues/356>`_.
- Value of dict can now contain an equal sign
`#241 <https://github.com/joke2k/django-environ/pull/241>`_.
- Added support for Python 3.11

Deprecated
++++++++++
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ def get_version_string():
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',

Expand Down
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ envlist =
docs
lint
manifest
py{35,36,37,38,39,310}-django{111,22}
py{36,37,38,39,310}-django{30,31,32}
py{38,39,310}-django{40}
py{35,36,37,38,39,310,311}-django{111,22}
py{36,37,38,39,310,311}-django{30,31,32}
py{38,39,310,311}-django{40}
pypy-django{111,22,30,31,32}

[gh-actions]
Expand All @@ -31,6 +31,7 @@ python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
pypy-3.7: pypy

[testenv]
Expand Down

0 comments on commit 9c201d4

Please sign in to comment.