-
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: loosed dependency versions to make this library more consumable
* feat: lowering minimum dependency versions Signed-off-by: Paul Horton <[email protected]> * feat: lowering minimum dependency versions Signed-off-by: Paul Horton <[email protected]> * feat: lowering minimum dependency versions - importlib-metadata raising minimum to ensure we get a typed library Signed-off-by: Paul Horton <[email protected]> * feat: lowering minimum dependency versions - importlib-metadata raising minimum to ensure we get a typed library Signed-off-by: Paul Horton <[email protected]> * feat: lowering minimum version for importlib-metadata to 3.4.0 with modified import statement Signed-off-by: Paul Horton <[email protected]>
- Loading branch information
Showing
3 changed files
with
13 additions
and
14 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
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 |
---|---|---|
@@ -1,11 +1,11 @@ | ||
# exactly pinned dependencies to the lowest version regardless of python_version | ||
# see pyptoject file for ranges | ||
|
||
packageurl-python == 0.9.4 | ||
packageurl-python == 0.3.0 | ||
requirements_parser == 0.2.0 | ||
setuptools == 50.3.2 | ||
importlib-metadata == 4.8.1 # ; python_version < '3.8' | ||
toml == 0.10.2 | ||
setuptools == 47.0.0 | ||
importlib-metadata == 3.4.0 # ; python_version < '3.8' | ||
toml == 0.10.0 | ||
typing-extensions == 3.10.0 # ; python_version < '3.8' | ||
types-setuptools == 57.4.2 | ||
types-toml == 0.10.1 | ||
types-setuptools == 57.0.0 | ||
types-toml == 0.10.0 |