Skip to content

Commit

Permalink
add back the python version specific dependency on libcst, turns out …
Browse files Browse the repository at this point in the history
…the real reason it was needed was due to there being no wheels on 3.13 which i didn't notice because uv switched my python version to 3.12
  • Loading branch information
DetachHead committed Nov 24, 2024
1 parent fff7be7 commit 40648a7
Show file tree
Hide file tree
Showing 2 changed files with 78 additions and 8 deletions.
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,9 @@ dev = [
docstubs = [
# these deps are also needed in build-system.requires. see https://github.com/pdm-project/pdm/issues/2947
"docify>=1.0.0",
# transient dependency of libcst. needed because there's no single version with wheels for 3.8-3.13 and it fails to build when there's no wheels
"libcst==1.1.0 ; python_version<'3.9'",
"libcst>=1.5.0 ; python_version>='3.9'",
]
lochelper = ["rich>=13.0", "textual>=0.70.0"]

Expand Down
83 changes: 75 additions & 8 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 40648a7

Please sign in to comment.