Skip to content

Commit

Permalink
Update official Python/Django version support (#62)
Browse files Browse the repository at this point in the history

---------

Co-authored-by: Johannes Maron <johannes@maron.family>
  • Loading branch information
irtazaakram and codingjoe authored Jun 22, 2023
1 parent bf6a482 commit 9127a98
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,11 @@ jobs:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
django-version:
- "3.2a"
- "4.0a"
- "3.2"
- "4.1"
- "4.2"
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -70,7 +72,7 @@ jobs:
run: python -m pip install --upgrade pip setuptools wheel codecov
- run: python setup.py develop
- name: Install Django ${{ matrix.django-version }}
run: python -m pip install "django~=${{ matrix.django-version }}"
run: python -m pip install "django~=${{ matrix.django-version }}.0"
- name: Run tests
run: python setup.py test
- run: codecov
Expand Down
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,15 @@ classifier =
Operating System :: OS Independent
Framework :: Django
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Framework :: Django :: 4.2
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
keywords =
django
django-storages
Expand Down

0 comments on commit 9127a98

Please sign in to comment.