Skip to content

Commit 45f4b06

Browse files
authored
Merge pull request qiskit-community#103 from kevinsung/requirements
edit requirements
2 parents f626d7b + 7448fc5 commit 45f4b06

File tree

2 files changed

+9
-15
lines changed

2 files changed

+9
-15
lines changed

pyproject.toml

+7-11
Original file line numberDiff line numberDiff line change
@@ -32,23 +32,19 @@ dependencies = [
3232

3333
[project.optional-dependencies]
3434
dev = [
35-
"black[jupyter]~=23.1",
35+
"black[jupyter]",
3636
"coverage",
37-
"ddt~=1.5",
37+
"ddt",
3838
"importlib_metadata",
39-
"ipywidgets",
40-
"mypy==1.3.0",
39+
"mypy",
4140
"jupyter-sphinx",
42-
"matplotlib",
4341
"nbmake",
4442
"nbsphinx",
45-
"pylatexenc",
46-
"pylint==2.14",
47-
"pytest==7.1",
48-
"qiskit_sphinx_theme~=1.16.0",
49-
"reno",
43+
"pylint",
44+
"pytest",
45+
"qiskit[visualization]",
46+
"qiskit_sphinx_theme",
5047
"sphinx-autodoc-typehints",
51-
"tqdm>=4.59.0",
5248
]
5349

5450
[tool.autoflake]

qiskit_research/utils/convenience.py

+2-4
Original file line numberDiff line numberDiff line change
@@ -173,8 +173,7 @@ def scale_cr_pulses(
173173
unroll_rzx_to_ecr: Optional[bool] = True,
174174
force_zz_matches: Optional[bool] = True,
175175
param_bind: Optional[dict] = None,
176-
) -> List[QuantumCircuit]:
177-
...
176+
) -> List[QuantumCircuit]: ...
178177

179178

180179
@overload
@@ -184,8 +183,7 @@ def scale_cr_pulses(
184183
unroll_rzx_to_ecr: Optional[bool] = True,
185184
force_zz_matches: Optional[bool] = True,
186185
param_bind: Optional[dict] = None,
187-
) -> QuantumCircuit:
188-
...
186+
) -> QuantumCircuit: ...
189187

190188

191189
def scale_cr_pulses(

0 commit comments

Comments
 (0)