Skip to content
This repository has been archived by the owner on Jul 28, 2023. It is now read-only.

Revert "fix python requirement versions (#1159)" #1162

Merged
merged 2 commits into from
Mar 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
qiskit-terra~=0.23.0
requests~=2.28.0
requests_ntlm~=1.1.0
qiskit-terra>=0.18.0
requests>=2.19
requests_ntlm<=1.1.0
numpy<1.24
urllib3~=1.26.0
python-dateutil~=2.8.0
websocket-client~=1.5.1
websockets~=10.0; python_version >= '3.7'
websockets~=9.1; python_version < '3.7'
dataclasses~=0.8; python_version < '3.7'
urllib3>=1.21.1
python-dateutil>=2.8.0
websocket-client>=1.5.1
websockets>=10.0; python_version >= '3.7'
websockets>=9.1; python_version < '3.7'
dataclasses>=0.8; python_version < '3.7'
18 changes: 9 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,16 +19,16 @@
from setuptools import setup

REQUIREMENTS = [
"qiskit-terra~=0.23.0",
"requests~=2.28.0",
"requests-ntlm~=1.1.0",
"qiskit-terra>=0.18.0",
"requests>=2.19",
"requests-ntlm<=1.1.0",
"numpy<1.24",
"urllib3~=1.26.0",
"python-dateutil~=2.8.0",
"websocket-client~=1.5.1",
"websockets~=10.0 ; python_version>='3.7'",
"websockets~=9.1 ; python_version<'3.7'",
"dataclasses~=0.8 ; python_version<'3.7'"
"urllib3>=1.21.1",
"python-dateutil>=2.8.0",
"websocket-client>=1.5.1",
"websockets>=10.0 ; python_version>='3.7'",
"websockets>=9.1 ; python_version<'3.7'",
"dataclasses>=0.8 ; python_version<'3.7'"
]

# Handle version.
Expand Down