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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- "3.13"
- "3.14"
django-version:
- "6.0"
- "6.1a1"
services:
redis:
image: redis
Expand All @@ -41,7 +41,7 @@ jobs:
- uses: astral-sh/setup-uv@v7
with:
python-version: ${{ matrix.python-version }}
- run: uv run --with django~=${{ matrix.django-version }}.0 pytest -m "not benchmark"
- run: uv run --with django~=${{ matrix.django-version }} pytest -m "not benchmark"
- uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand All @@ -57,7 +57,7 @@ jobs:
python-version:
- "3.13"
django-version:
- "6.0"
- "6.1a1"
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
Expand All @@ -67,4 +67,4 @@ jobs:
- uses: codecov/codecov-action@v6
with:
token: ${{ secrets.CODECOV_TOKEN }}
- run: uv run --with django~=${{ matrix.django-version }}.0 pytest -m "not benchmark"
- run: uv run --with django~=${{ matrix.django-version }} pytest -m "not benchmark"
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ classifiers = [
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Framework :: Django",
"Framework :: Django :: 6.0",
"Framework :: Django :: 6.1",
]
requires-python = ">=3.12"
dependencies = ["django @ git+https://github.com/django/django.git@main#egg=django"]
dependencies = ["django>=6.1a1"]

[project.urls]
# https://packaging.python.org/en/latest/specifications/well-known-project-urls/#well-known-labels
Expand Down
Loading