Skip to content

Commit 0bae280

Browse files
authored
add support for python 3.13 (#31)
1 parent cce344a commit 0bae280

3 files changed

Lines changed: 11 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@ While in this phase, we will denote breaking changes with a minor increase.
1414

1515
### Added
1616

17-
* Added support for python `3.12`
17+
* Added support for python `3.12` and `3.13`
1818

1919
### Changed
2020

2121
* Bump all dependencies to the latest version and introduce necessary adaptation in the source code (affecting only `dac info`):
22-
- `build~=0.9` -> `build==1.2.2`
23-
- `toml~=0.10` -> `toml==0.10.2`
24-
- `typer[all]~=0.7` -> `typer[all]==0.15.2`
25-
- `wheel~=0.38` -> `wheel==0.45.1`
26-
* Prevent installation with python > `3.12`
22+
* `build~=0.9` -> `build~=1.2`
23+
* `toml~=0.10` -> `toml~=0.10.2`
24+
* `typer[all]~=0.7` -> `typer~=0.15.2`
25+
* `wheel~=0.38` -> `wheel~=0.45`
26+
* Prevent installation with python > `3.13`
2727

2828
## 0.4.2
2929

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "dac"
33
dynamic = ["version"]
44
description = "Tool to distribute data as code"
55
readme = "README.md"
6-
requires-python = ">=3.9,<3.13"
6+
requires-python = ">=3.9,<3.14"
77
license = { text = "MIT" }
88
authors = [
99
{ name = "Francesco Calcavecchia", email = "francesco.calcavecchia@gmail.com" },
@@ -22,10 +22,10 @@ classifiers = [
2222
]
2323

2424
dependencies = [
25-
"build==1.2.2",
26-
"toml==0.10.2",
27-
"typer[all]==0.15.2",
28-
"wheel==0.45.1",
25+
"build~=1.2",
26+
"toml~=0.10.2",
27+
"typer~=0.15.2",
28+
"wheel~=0.45",
2929
]
3030

3131
# [project.optional-dependencies]

requirements-dev.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
mypy~=0.991
22
pre-commit~=2.21
33
-r requirements-test.txt
4-
-r requirements-docs.txt

0 commit comments

Comments
 (0)