Skip to content

Commit

Permalink
Adds support to python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
jairhenrique committed Oct 2, 2024
1 parent e6ae935 commit fb8294c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
env:
PGUSER: postgres
PGPASSWORD: postgres
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Added
- Support to Field `db_default` value
- Support to python 3.13

### Changed

Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development",
]
dependencies = [
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ env_list =
py{310,311}-django{42,50,51}-{postgresql,sqlite}
py{311,312}-django{42,50,51}-{postgresql-psycopg3}
py312-django{50,51}-{postgresql-contenttypes}
py313-django{50,51}-{sqlite,postgresql-psycopg3,postgresql-contenttypes}

[testenv]
package = wheel
Expand All @@ -27,7 +28,7 @@ deps =
django50: Django>=5.0,<5.1
django51: Django>=5.1,<5.2
postgresql: psycopg2-binary
postgresql-psycopg3: psycopg
postgresql-psycopg3: psycopg[binary]
commands =
python \
-m coverage run \
Expand Down

0 comments on commit fb8294c

Please sign in to comment.