Skip to content

Commit

Permalink
fix: Exclude packaging 22.0 to avoid breakage (#1568)
Browse files Browse the repository at this point in the history
* fix: Exclude `packaging 22.0` to avoid breakage

* add news
  • Loading branch information
frostming authored Dec 12, 2022
1 parent 7db1e17 commit 7f09f24
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 8 deletions.
2 changes: 1 addition & 1 deletion news/1560.bugfix.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Allow relative paths in `build-system.requirese`, since `build` and `hatch` both support it. Be aware it is not allowed in the standard.
Allow relative paths in `build-system.requires`, since `build` and `hatch` both support it. Be aware it is not allowed in the standard.
1 change: 1 addition & 0 deletions news/1568.dep.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Exclude `package==22.0` from the dependencies to avoid some breakages to the end users.
25 changes: 19 additions & 6 deletions pdm.lock

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

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = {text = "MIT"}
dependencies = [
"blinker",
"certifi",
"packaging>=20.9",
"packaging>=20.9,!=22.0",
"platformdirs",
"rich>=12.3.0",
"virtualenv>=20",
Expand Down

0 comments on commit 7f09f24

Please sign in to comment.