-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: make deps more flexible (#158)
* feat: make deps more flexible * feat: we don't have requirements.txt anymore * fix: make testing more reliable * fix: update the test as the underlying library changed types: v0.12.0..v0.13.0 has changed the type of what is returned. ```diff -from collections import OrderedDict +_dict = dict +import platform ``` Authored-by: Vinit Kumar <[email protected]> Signed-off-by: Vinit Kumar <[email protected]> * fix: remove imports Signed-off-by: Vinit Kumar <[email protected]>
- Loading branch information
Vinit Kumar
authored
Oct 16, 2022
1 parent
8a68519
commit db6e2e5
Showing
6 changed files
with
10 additions
and
34 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,7 +1,7 @@ | ||
# When installing dev dependencies also install the user dependencies | ||
-r requirements.txt | ||
xmltodict==0.12.0 | ||
pytest==7.0.1 | ||
coverage==6.3.2 | ||
py==1.11.0 | ||
flake8==4.0.1 | ||
-r requirements.in | ||
xmltodict>=0.12.0 | ||
pytest | ||
coverage | ||
py | ||
flake8 |
This file was deleted.
Oops, something went wrong.
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