Skip to content

Commit

Permalink
Update the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiask committed Sep 17, 2024
1 parent 7a420bd commit 7ac2f61
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.9"
- "3.10"
- "3.12"

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
/django_fhadmin.egg-info
/MANIFEST
.coverage
.tox/
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Change log
- Minimally reduce the size of the triangle.
- Started raising an ``ImproperlyConfigured`` exception when encountering a
``FHADMIN_GROUPS`` configuration without ``FHADMIN_GROUPS_REMAINING``.
- Added Python 3.12, Django 4.2, Django 5.1.


`2.2`_ (2022-02-24)
Expand Down
5 changes: 3 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,15 @@ classifiers =
License :: OSI Approved :: BSD License
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12

[options]
packages = find:
install_requires =
Django>=3.2
python_requires = >=3.9
python_requires = >=3.10
include_package_data = True

[options.extras_require]
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{39,310}-dj{32,40,main}
py{310,312}-dj{32,42,51,main}

[testenv]
usedevelop = true
Expand All @@ -10,7 +10,8 @@ commands =
coverage report -m
deps =
dj32: Django>=3.2,<4.0
dj40: Django>=4.0,<4.1
dj42: Django>=4.2,<5.0
dj51: Django>=5.1,<5.2
djmain: https://github.com/django/django/archive/main.tar.gz

# [testenv:docs]
Expand Down

0 comments on commit 7ac2f61

Please sign in to comment.