Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 9 additions & 10 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,19 +10,11 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
django-version: ["3.2", "4.0", "4.1", "4.2", "5.0", "main"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
django-version: ["3.2", "4.0", "4.1", "4.2", "5.0", "5.1", "main"]
exclude:
- python-version: "3.7"
django-version: "main"
- python-version: "3.8"
django-version: "main"
- python-version: "3.9"
django-version: "main"
- python-version: "3.7"
django-version: "5.0"
- python-version: "3.8"
django-version: "5.0"
- python-version: "3.9"
django-version: "5.0"

Expand Down Expand Up @@ -59,3 +51,10 @@ jobs:
DJANGO: ${{ matrix.django-version }}
DESCOPE_PROJECT_ID: P2ZRsmAQw8MKG78knGZ9GXWRqxM5
DESCOPE_MANAGEMENT_KEY: ${{ secrets.DESCOPE_MANAGEMENT_KEY }}
done:
name: Build Matrix Complete
needs: build
runs-on: ubuntu-latest
steps:
- name: Done
run: echo "Done"
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Setup
uses: descope/.github/.github/actions/python/poetry/setup@main
with:
python-version: "3.8"
python-version: "3.9"
- name: Autobump version
run: |
poetry version $(git describe --tags --abbrev=0)
Expand Down
14 changes: 9 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,24 +23,28 @@ classifiers = [
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",

]

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Django = ">=3.2.19,<5.1"
python = ">=3.9,<4.0"
Django = ">=3.2.19,<5.2"
descope = "^1.5.1"

[tool.poetry.group.dev.dependencies]
Expand Down
8 changes: 5 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[tox]
isolated_build=true
envlist=
py{38,39,310}-dj{32,40,41,42}
py{311,312}-dj{42, 50}
py3{8,9,10}-dj{32,40,41,42}
py31{1,2,3}-dj{42, 50, 51}

[gh-actions]
python=
3.8: py38
3.9: py39
3.10: py310
3.11: py311
3.12: py312
3.13: py313

[gh-actions:env]
DJANGO=
Expand All @@ -19,6 +19,7 @@ DJANGO=
4.1: dj41
4.2: dj42
5.0: dj50
5.1: dj51
main: djmain

[testenv]
Expand All @@ -37,6 +38,7 @@ deps=
dj41: Django>=4.1,<4.2
dj42: Django>=4.2,<4.3
dj50: Django>=5.0,<5.1
dj51: Django>=5.1,<5.2
djmain: https://github.com/django/django/archive/main.tar.gz
python-dotenv
django-debug-toolbar
Loading