Skip to content

Commit

Permalink
Merge pull request #29 from stuartmaxwell:dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
stuartmaxwell authored Oct 9, 2024
2 parents 412508e + e251129 commit 2eb8e01
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
default_language_version:
python: python3.12
python: python3.13

repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
rev: v5.0.0
hooks:
- id: check-added-large-files
- id: check-ast
Expand All @@ -19,7 +19,7 @@ repos:
- id: trailing-whitespace
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.6.5
rev: v0.6.9
hooks:
- id: ruff
args: [--fix]
Expand Down
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ default:
@just --list

# Set the Python version
python_version := "3.12"
python_version := "3.13"

# Set the uv run command
uv := "uv run --python 3.12 --extra test"
uv := "uv run --python 3.13 --extra test"

#Set the uv command to run a tool
uv-tool := "uv tool run"
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import nox


@nox.session(venv_backend="uv", python=["3.10", "3.11", "3.12"])
@nox.session(venv_backend="uv", python=["3.10", "3.11", "3.12", "3.13"])
@nox.parametrize("django_ver", ["~=4.2.0", "~=5.0.0", "~=5.1.0"])
def test(session: nox.Session, django_ver: str) -> None:
"""Run the test suite."""
Expand Down
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,15 @@ classifiers = [
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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",
]
Expand Down
6 changes: 3 additions & 3 deletions uv.lock

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

0 comments on commit 2eb8e01

Please sign in to comment.