Skip to content

Commit 54f85d3

Browse files
committed
exclude python 3.12
1 parent 6cea9fd commit 54f85d3

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

.github/workflows/actions.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
strategy:
3939
matrix:
4040
os: ["ubuntu-latest"]
41-
version: ["3.10", "3.11", "3.12"]
41+
version: ["3.9", "3.10", "3.11"]
4242
steps:
4343
- name: Checkout 🔖
4444
uses: actions/checkout@v3

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ While in this phase, we will denote breaking changes with a minor increase.
1919
- `toml~=0.10` -> `toml==0.10.2`
2020
- `typer[all]~=0.7` -> `typer[all]==0.15.2`
2121
- `wheel~=0.38` -> `wheel==0.45.1`
22+
* Prevent installation with python > `3.11`
2223

2324
## 0.4.2
2425

pyproject.toml

Lines changed: 1 addition & 1 deletion
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.10,<3.13"
6+
requires-python = ">=3.9,<3.12"
77
license = { text = "MIT" }
88
authors = [
99
{ name = "Francesco Calcavecchia", email = "francesco.calcavecchia@gmail.com" },

0 commit comments

Comments
 (0)