Skip to content

Commit

Permalink
Fix python version limitation for backports.zoneinfo for [dev]requi…
Browse files Browse the repository at this point in the history
…rements.txt.
  • Loading branch information
derekpierre committed Sep 26, 2023
1 parent 1a5741c commit a4df7b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ attrs==23.1.0 ; python_version >= '3.7'
autobahn==23.1.2 ; python_version >= '3.7'
automat==22.10.0
backcall==0.2.0
backports.zoneinfo==0.2.1 ; python_version >= '3.6'
backports.zoneinfo==0.2.1 ; python_version >= '3.6' and python_version < '3.9'
base58==1.0.3
bitarray==2.8.1
bytestring-splitter==2.4.1
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ async-timeout==4.0.3 ; python_version >= '3.7'
attrs==23.1.0 ; python_version >= '3.7'
autobahn==23.1.2 ; python_version >= '3.7'
automat==22.10.0
backports.zoneinfo==0.2.1 ; python_version >= '3.6'
backports.zoneinfo==0.2.1 ; python_version >= '3.6' and python_version < '3.9'
bitarray==2.8.1
bytestring-splitter==2.4.1
cached-property==1.5.2
Expand Down

0 comments on commit a4df7b4

Please sign in to comment.