Skip to content

Commit 9127a98

Browse files
Update official Python/Django version support (#62)
--------- Co-authored-by: Johannes Maron <[email protected]>
1 parent bf6a482 commit 9127a98

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/ci.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,11 @@ jobs:
5757
- "3.8"
5858
- "3.9"
5959
- "3.10"
60+
- "3.11"
6061
django-version:
61-
- "3.2a"
62-
- "4.0a"
62+
- "3.2"
63+
- "4.1"
64+
- "4.2"
6365
steps:
6466
- uses: actions/checkout@v3
6567
- name: Set up Python ${{ matrix.python-version }}
@@ -70,7 +72,7 @@ jobs:
7072
run: python -m pip install --upgrade pip setuptools wheel codecov
7173
- run: python setup.py develop
7274
- name: Install Django ${{ matrix.django-version }}
73-
run: python -m pip install "django~=${{ matrix.django-version }}"
75+
run: python -m pip install "django~=${{ matrix.django-version }}.0"
7476
- name: Run tests
7577
run: python setup.py test
7678
- run: codecov

setup.cfg

+3-1
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,15 @@ classifier =
1616
Operating System :: OS Independent
1717
Framework :: Django
1818
Framework :: Django :: 3.2
19-
Framework :: Django :: 4.0
19+
Framework :: Django :: 4.1
20+
Framework :: Django :: 4.2
2021
Programming Language :: Python
2122
Programming Language :: Python :: 3
2223
Programming Language :: Python :: 3 :: Only
2324
Programming Language :: Python :: 3.8
2425
Programming Language :: Python :: 3.9
2526
Programming Language :: Python :: 3.10
27+
Programming Language :: Python :: 3.11
2628
keywords =
2729
django
2830
django-storages

0 commit comments

Comments
 (0)