-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add latest_dependencies.py and workflow
- Loading branch information
1 parent
108d77c
commit b7daa56
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
#!/usr/bin/env python | ||
import tomli | ||
|
||
with open("pyproject.toml", 'rb') as f: | ||
pyproject = tomli.load(f) | ||
|
||
deps = pyproject["project"]["dependencies"] | ||
deps = [dep.partition("==")[0] for dep in deps] | ||
deps = [dep.partition(">=")[0] for dep in deps] | ||
deps = [dep.partition("<=")[0] for dep in deps] | ||
deps = [dep.partition(">")[0] for dep in deps] | ||
deps = [dep.partition("<")[0] for dep in deps] | ||
deps = [dep.partition("~=")[0] for dep in deps] | ||
deps = [dep.partition("^=")[0] for dep in deps] | ||
deps = [f'"{dep}"' for dep in deps] | ||
|
||
print(' '.join(deps)) |