Skip to content

Commit

Permalink
Fix version ranges in requirements.txt
Browse files Browse the repository at this point in the history
  • Loading branch information
maffoo committed Sep 2, 2024
1 parent 4a1f3bb commit cd0fea0
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
numpy >= 1.12.*; python_version < '3.7'
numpy >= 1.15.*; python_version == '3.7'
numpy >= 1.17.*; python_version >= '3.8'
pyOpenSSL >= 18.0.*
pyparsing >= 2.1.*
numpy >= 1.12; python_version < '3.7'
numpy >= 1.15; python_version == '3.7'
numpy >= 1.17; python_version >= '3.8'
pyOpenSSL >= 18.0
pyparsing >= 2.1
requests
service_identity
twisted >= 18.4.*
twisted >= 18.4

0 comments on commit cd0fea0

Please sign in to comment.