Skip to content

Commit

Permalink
Merge pull request #281 from entropicalabs/main_fix_requirements
Browse files Browse the repository at this point in the history
fix regular requirements for openqaoa
  • Loading branch information
vishal-ph authored Sep 11, 2023
2 parents 065d7ae + d07bcb5 commit 1e6acff
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/openqaoa-core/openqaoa/backends/plugin_finder.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def plugin_finder_dict() -> list:
if sys.version_info >= (3, 10):
available_plugins = entry_points().select(group="openqaoa.plugins")
else:
available_plugins = entry_points()["openqaoa.plugins"]
available_plugins = entry_points().get("openqaoa.plugins", [])

output_dict = dict()
for each_plugin_entry_point in available_plugins:
Expand Down
1 change: 1 addition & 0 deletions src/openqaoa-core/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ autograd>=1.4
semantic_version>=2.10
autoray>=0.3.1
requests
ipython>=8.2.0
1 change: 0 additions & 1 deletion src/openqaoa-core/requirements_test.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
pytest>=7.1.0
pytest-xdist
pytest-cov>=3.0.0
ipython>=8.2.0
nbconvert>=6.5.1
pandas>=1.4.3
plotly>=5.9.0
Expand Down

0 comments on commit 1e6acff

Please sign in to comment.