Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,16 @@ While in this phase, we will denote breaking changes with a minor increase.

### Added

* Added support for python `3.12`
* Added support for python `3.12` and `3.13`

### Changed

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

## 0.4.2

Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "dac"
dynamic = ["version"]
description = "Tool to distribute data as code"
readme = "README.md"
requires-python = ">=3.9,<3.13"
requires-python = ">=3.9,<3.14"
license = { text = "MIT" }
authors = [
{ name = "Francesco Calcavecchia", email = "francesco.calcavecchia@gmail.com" },
Expand All @@ -22,10 +22,10 @@ classifiers = [
]

dependencies = [
"build==1.2.2",
"toml==0.10.2",
"typer[all]==0.15.2",
"wheel==0.45.1",
"build~=1.2",
"toml~=0.10.2",
"typer~=0.15.2",
"wheel~=0.45",
]

# [project.optional-dependencies]
Expand Down
1 change: 0 additions & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
mypy~=0.991
pre-commit~=2.21
-r requirements-test.txt
-r requirements-docs.txt