Skip to content

Commit 47262ce

Browse files
authored
Merge pull request #41 from BrightpathProgress/update-ci
Update CI to test against supported Django/Python versions
2 parents 15c7d6e + 2c24198 commit 47262ce

File tree

3 files changed

+18
-29
lines changed

3 files changed

+18
-29
lines changed

.github/workflows/ci.yml

+11-13
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,20 @@ jobs:
1313
fail-fast: false
1414
matrix:
1515
python-version:
16-
- "3.6"
17-
- "3.7"
1816
- "3.8"
1917
- "3.9"
20-
- "pypy-3.6"
21-
- "pypy-3.7"
18+
- "3.10"
19+
- "3.11"
20+
- "3.12"
2221
tox-env:
23-
- "dj22" # LTS
24-
- "dj31"
25-
- "dj32" # LTS
22+
- "dj42" # LTS
23+
- "dj50"
2624
exclude:
27-
# Python 3.9 is compatible with Django 3.1+
25+
# Python 3.8/3.9 is incompatible with Django 5.0+
26+
- python-version: "3.8"
27+
tox-env: "dj50"
2828
- python-version: "3.9"
29-
tox-env: "dj22"
30-
- python-version: "3.9"
31-
tox-env: "dj30"
29+
tox-env: "dj50"
3230

3331
env:
3432
TOXENV: ${{ matrix.tox-env }}
@@ -66,10 +64,10 @@ jobs:
6664
steps:
6765
- uses: actions/checkout@v2
6866

69-
- name: Set up Python 3.6
67+
- name: Set up Python 3.12
7068
uses: actions/setup-python@v2
7169
with:
72-
python-version: '3.6'
70+
python-version: '3.12'
7371

7472
- name: Install tox and flake8 packages
7573
run: pip install tox tox-gh-actions flake8

README.rst

+1-4
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,12 @@ Automated code metrics:
2727
.. image:: https://img.shields.io/codeclimate/github/GaretJax/django-click.svg
2828
:target: https://codeclimate.com/github/GaretJax/django-click
2929

30-
.. image:: https://img.shields.io/requires/github/GaretJax/django-click.svg
31-
:target: https://requires.io/github/GaretJax/django-click/requirements/?branch=master
32-
3330
``django-click`` is a library to easily write Django management commands using the
3431
``click`` command line library.
3532

3633
* Free software: MIT license
3734
* Documentation for the Click command line library: https://click.palletsprojects.com/en/8.0.x/
38-
* Compatible with Django 2.2, 3.1, or 3.2 running on Python 3.6, 3.7, 3.8, 3.9, and PyPy.
35+
* Compatible with Django 4.2 and 5.0 running on Python 3.8, 3.9, 3.10, 3.11, and 3.12 (note: 3.10+ required for Django 5.0).
3936

4037

4138
Installation

tox.ini

+6-12
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,22 @@
11
[tox]
2-
# Having the .tox directory in the project directory slows down the
3-
# `pip install -e .` step required by `usedevelop = true` considerably.
4-
# By moving it out of the way (~500MB), we trim test execution time by > 80%.
5-
toxworkdir = {homedir}/.toxenvs/django-click
62
envlist =
7-
dj{22,31,32},flake8
3+
dj{42,50},flake8
84

95
[gh-actions]
106
django =
11-
2.2: dj22
12-
3.1: dj31
13-
3.2: dj32
7+
4.2: dj42
8+
5.0: dj50
149

1510
[testenv]
16-
usedevelop = true
11+
package = editable
1712
passenv = LC_ALL, LANG, LC_CTYPE
1813
setenv =
1914
DJANGO_SETTINGS_MODULE=testprj.settings
2015
PYTHONPATH={toxinidir}/djclick/test/testprj
2116
deps =
2217
-rrequirements-test.txt
23-
dj22: django>=2.2,<2.3
24-
dj31: django>=3.1,<3.2
25-
dj32: django>=3.2,<3.3
18+
dj42: django>=4.2,<4.3
19+
dj50: django>=5.0,<5.1
2620
commands = py.test -rxs --cov-report= --cov-append --cov djclick {posargs:djclick}
2721

2822

0 commit comments

Comments
 (0)