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
3 changes: 3 additions & 0 deletions .github/workflows/codecov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:
with:
path: .venv
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }}-1
- name: Update poetry lock
run: poetry lock
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
- name: Install dependencies
run: poetry install
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,14 @@ jobs:
# Django 4.2 is incompatible with Python 3.13+
- django-version: 4.2
python-version: 3.13
#Django 6 is incompatible with < Pyhton 3.12
- django-version: 6.0
python-version: 3.9
- django-version: 6.0
python-version: 3.10
- django-version: 6.0
python-version: 3.11

steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v5
Expand All @@ -59,7 +67,7 @@ jobs:
with:
path: .venv
key: ${{ hashFiles('**/poetry.lock') }}-${{ matrix.python-version }}-0
- run: poetry env use ${{ matrix.python-version }} && poetry install --no-root
- run: poetry env use ${{ matrix.python-version }} && poetry lock && poetry install --no-root
if: steps.cached-poetry-dependencies.outputs.cache-hit != 'true'
- run: |
source .venv/bin/activate
Expand Down
36 changes: 30 additions & 6 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ classifiers = [
'Framework :: Django :: 5.0',
'Framework :: Django :: 5.1',
'Framework :: Django :: 5.2',
'Framework :: Django :: 6.0',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Operating System :: OS Independent',
Expand All @@ -39,14 +40,14 @@ classifiers = [
python = '^3.9'
django = [
{ version = '^4.2', python = '>=3.9 <3.10' },
{ version = '^4.2 || ^5', python = '>=3.10' },
{ version = '^4.2 || ^5 || ^6', python = '>=3.10' },
Comment thread
tim-schilling marked this conversation as resolved.
]
requests = '*'
urllib3 = '*'
cryptography = '*'
PyJWT = "*"

[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
responses = '*'
mock = '*'
coverage = '*'
Expand Down
Loading