Skip to content

Commit

Permalink
Added Django 5.0 and Python 3.12 to test matrix. Resolves georgemarsh…
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaliyf committed Jan 11, 2024
1 parent 3c98c11 commit 3879ce1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- "3.9"
- "3.10"
- "3.11"
- "3.12"

steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ bi-directional data retrieval.
Requirements
------------

* Python_ (3.7, 3.8, 3.9, 3.10, 3.11)
* Python_ (3.7, 3.8, 3.9, 3.10, 3.11, 3.12)
* Cryptography_ (2.0+)
* Django_ (3.2, 4.1, 4.2)
* Django_ (3.2, 4.1, 4.2, 5.0)

Installation
------------
Expand Down
4 changes: 2 additions & 2 deletions docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ Installation
Requirements
------------

* Python_ (3.7, 3.8, 3.9, 3.10, 3.11)
* Python_ (3.7, 3.8, 3.9, 3.10, 3.11, 3.12)
* Cryptography_ (2.0+)
* Django_ (3.2, 4.1, 4.2)
* Django_ (3.2, 4.1, 4.2, 5.0)

.. code-block:: console
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,13 +57,15 @@ target-version = "py37"
[tool.tox]
# language=ini
legacy_tox_ini = """
[tox]
min_version = 4.0
envlist =
{py37,py38,py39,py310}-django32,
{py38,py39,py310}-django41,
{py38,py39,py310,py311}-django42,
{py310,py311}-djangomain,
{py310,py311,py312}-django50,
{py310,py311,py312}-djangomain,
isolated_build = True
[testenv]
Expand All @@ -72,6 +74,7 @@ deps =
django32: Django>=3.2,<3.3
django41: Django>=4.1,<4.2
django42: Django>=4.2,<4.3
django50: Django>=5.0,<5.1
djangomain: https://github.com/django/django/archive/main.tar.gz
commands =
{envpython} -m coverage run --context='{envname}' runtests.py {posargs}
Expand Down

0 comments on commit 3879ce1

Please sign in to comment.