diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 788b726..fa9f290 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v1 diff --git a/pyproject.toml b/pyproject.toml index 20f37ba..c22c933 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -72,7 +72,7 @@ path = "src/organizations/__init__.py" [tool.hatch.build.targets.wheel] only-include = ["src/organizations"] -packages = ["src/oranizations"] +packages = ["src/organizations"] [tool.black] target-version = ["py311"] diff --git a/tox.ini b/tox.ini index 2c86431..68b0773 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ envlist = py{39,310}-django{32}, py{39}-django{42}, py{310,311,312}-django{42} - py{310,311,312,313}-django{51} + py{310,311,312,313}-django{52} [gh-actions] python = @@ -32,8 +32,8 @@ basepython = deps = hatch>=1.7.0 django32: Django>=3.2,<4 - django42: Django>=4.2,<4.3 - django51: Django>=5.1,<5.2 + django42: Django>=4.2,<5 + django51: Django>=5.2,<6 extras = tests [testenv:flake8]