Skip to content

Commit

Permalink
Update requirements.txt for higher python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiasjaster committed Jun 9, 2024
1 parent 7e7d916 commit 131cec6
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions requirements.txt
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'

0 comments on commit 131cec6

Please sign in to comment.