Skip to content

Commit 4470a4f

Browse files
author
Dawson R
committed
Update version of click supported
1 parent c0a8245 commit 4470a4f

File tree

3 files changed

+128
-13
lines changed

3 files changed

+128
-13
lines changed

.gitignore

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
.DS_Store
1+
# Environment
2+
.env
3+
.envrc
24

35
# Compiles and caches
46
__pycache__
@@ -9,4 +11,8 @@ dist/
911
*.egg-info
1012

1113
# Virtual envs
12-
.venv/
14+
.venv/
15+
16+
# Misc
17+
.DS_Store
18+
.aider*

poetry.lock

Lines changed: 113 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,14 @@ authors = ["Dawson R <[email protected]>"]
66
license = "MIT"
77
readme = "README.md"
88

9+
[build-system]
10+
requires = ["poetry-core"]
11+
build-backend = "poetry.core.masonry.api"
12+
913
[tool.poetry.dependencies]
1014
python = "^3.12"
11-
click = "^6.6"
15+
click = ">=8.0.0,<9.0.0"
1216
wheel = "^0.44.0"
1317

14-
15-
[build-system]
16-
requires = ["poetry-core"]
17-
build-backend = "poetry.core.masonry.api"
18+
[tool.poetry.group.dev.dependencies]
19+
black = "^24.8.0"

0 commit comments

Comments
 (0)