Skip to content

Commit

Permalink
fix: Add packaging to install_requires and drop version specifier (#413)
Browse files Browse the repository at this point in the history
## 📝 Description

This change adds the `packaging` package to `install_requires` and drops
the version specifier from requirements.txt.

Thanks @okoriko!
  • Loading branch information
lgarber-akamai authored Mar 21, 2023
1 parent 60d732d commit 916859c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
terminaltables
requests
PyYAML
packaging>=23.0
packaging
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,7 @@ def bake_version(v):
"terminaltables",
"requests",
"PyYAML",
"packaging"
],
entry_points={
"console_scripts": [
Expand Down

0 comments on commit 916859c

Please sign in to comment.