-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update requirements.txt for higher python versions
- Loading branch information
1 parent
7e7d916
commit 131cec6
Showing
1 changed file
with
16 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,23 @@ | ||
PySerial>=3.0,<4.0 | ||
requests>=2.0,<3.0 | ||
intelhex>=2.0,<3.0 | ||
PySerial>=3.0,<4.0; python_version <= '3.7' | ||
PySerial; python_version > '3.7' | ||
requests>=2.0,<3.0; python_version <= '3.7' | ||
requests; python_version > '3.7' | ||
intelhex>=2.0,<3.0; python_version <= '3.7' | ||
intelhex; python_version > '3.7' | ||
future | ||
PrettyTable<=1.0.1; python_version < '3.6' | ||
prettytable>=2.0,<3.0; python_version >= '3.6' | ||
prettytable>=2.0,<3.0; python_version == '3.7' | ||
prettytable; python_version > '3.7' | ||
fasteners | ||
appdirs>=1.4,<2.0 | ||
junit-xml>=1.0,<2.0 | ||
appdirs>=1.4,<2.0; python_version <= '3.7' | ||
appdirs; python_version > '3.7' | ||
junit-xml>=1.0,<2.0; python_version <= '3.7' | ||
junit-xml; python_version > '3.7' | ||
lockfile | ||
six>=1.0,<2.0 | ||
colorama>=0.3,<0.5 | ||
six>=1.0,<2.0; python_version <= '3.7' | ||
six; python_version > '3.7' | ||
colorama>=0.3,<0.5; python_version <= '3.7' | ||
colorama; python_version > '3.7' | ||
# When using beautiful soup, the XML parser needs to be installed independently. It is only needed on macOs though. | ||
beautifulsoup4 | ||
lxml; sys_platform == 'darwin' |