-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace imp with importlib for python3.12
- Loading branch information
1 parent
131cec6
commit acdfd4f
Showing
12 changed files
with
46 additions
and
27 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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
mbed-os-tools>=0.0.9 | ||
mbed-host-tests>=1.5.0,<2 | ||
mbed-os-tools>=0.0.9; python_version <= '3.7' | ||
mbed-os-tools; python_version > '3.7' | ||
mbed-host-tests>=1.5.0,<2; python_version <= '3.7' | ||
mbed-host-tests; python_version > '3.7' |
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,3 +1,4 @@ | ||
mock>=2 | ||
mock>=2; python_version <= '3.7' | ||
mock; python_version > '3.7' | ||
coverage | ||
coveralls |
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 +1,2 @@ | ||
mbed-os-tools>=0.0.9 | ||
mbed-os-tools>=0.0.9; python_version <= '3.7' | ||
mbed-os-tools; python_version > '3.7' |
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,3 +1,4 @@ | ||
mock>=2 | ||
mock>=2; python_version <= '3.7' | ||
mock; python_version > '3.7' | ||
coverage | ||
coveralls |
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,3 +1,5 @@ | ||
PrettyTable<=1.0.1; python_version < '3.6' | ||
prettytable>=2.0,<3.0; python_version >= '3.6' | ||
mbed-os-tools>=0.0.9 | ||
prettytable>=2.0,<3.0; python_version == '3.7' | ||
prettytable; python_version > '3.7' | ||
mbed-os-tools>=0.0.9; python_version <= '3.7' | ||
mbed-os-tools; python_version > '3.7' |
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,4 +1,6 @@ | ||
mock>=2 | ||
pytest>=3 | ||
mock>=2; python_version <= '3.7' | ||
mock; python_version > '3.7' | ||
pytest>=3; python_version <= '3.7' | ||
pytest; python_version > '3.7' | ||
coverage | ||
coveralls |
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
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,6 +1,12 @@ | ||
coverage>=4,<5 | ||
coveralls>=1,<2 | ||
mock>=2,<4 | ||
pytest>=3,<5 | ||
wheel>=0.34 | ||
setuptools-scm>=4.1 | ||
coverage>=4,<5; python_version <= '3.7' | ||
coverage; python_version > '3.7' | ||
coveralls>=1,<2; python_version <= '3.7' | ||
coveralls; python_version > '3.7' | ||
mock>=2,<4; python_version <= '3.7' | ||
mock; python_version > '3.7' | ||
pytest>=3,<5; python_version <= '3.7' | ||
pytest; python_version > '3.7' | ||
wheel>=0.34; python_version <= '3.7' | ||
wheel; python_version > '3.7' | ||
setuptools-scm>=4.1; python_version <= '3.7' | ||
setuptools-scm; python_version > '3.7' |