Skip to content

Commit ed4817d

Browse files
authored
Fix packaging typo and Update Python/Django support (bennylope#279)
* Fix typo" * Update Python test versions * Update Django versions tested
1 parent 1ef7470 commit ed4817d

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
strategy:
1111
matrix:
12-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
12+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1313

1414
steps:
1515
- uses: actions/checkout@v1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ path = "src/organizations/__init__.py"
7272

7373
[tool.hatch.build.targets.wheel]
7474
only-include = ["src/organizations"]
75-
packages = ["src/oranizations"]
75+
packages = ["src/organizations"]
7676

7777
[tool.black]
7878
target-version = ["py311"]

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ envlist =
44
py{39,310}-django{32},
55
py{39}-django{42},
66
py{310,311,312}-django{42}
7-
py{310,311,312,313}-django{51}
7+
py{310,311,312,313}-django{52}
88

99
[gh-actions]
1010
python =
@@ -32,8 +32,8 @@ basepython =
3232
deps =
3333
hatch>=1.7.0
3434
django32: Django>=3.2,<4
35-
django42: Django>=4.2,<4.3
36-
django51: Django>=5.1,<5.2
35+
django42: Django>=4.2,<5
36+
django51: Django>=5.2,<6
3737
extras = tests
3838

3939
[testenv:flake8]

0 commit comments

Comments
 (0)