Skip to content
This repository has been archived by the owner on Dec 27, 2022. It is now read-only.

Poetry(prod):(deps): Bump entropylab from 0.1.2 to 0.3.0 #28

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
5 changes: 3 additions & 2 deletions entropylab_qpudb/tests/test_qpudatabase.py
Original file line number Diff line number Diff line change
Expand Up @@ -427,8 +427,9 @@ def test_with_resolver(testdb, simp_resolver):


def test_use_in_entropy(testdb, simp_resolver):
entropy_db_dir = "tests_cache/entropy"
try:
entropydb_name, qpudb_name = "entropy.db", testdb
entropydb_name, qpudb_name = entropy_db_dir, testdb
entropydb = SqlAlchemyDB(entropydb_name)
lab_resources = LabResources(entropydb)
lab_resources.register_resource(
Expand All @@ -443,7 +444,7 @@ def test_use_in_entropy(testdb, simp_resolver):
# todo: verify that we can load from snapshot
experiment_resources.get_resource(testdb).close()
finally:
os.remove("entropy.db")
shutil.rmtree(entropy_db_dir)


def test_we_can_open_all_history_items(testdb):
Expand Down
131 changes: 127 additions & 4 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ homepage = "https://github.com/entropy-lab/entropy-qpu"
python = "^3.7.1"
ZODB = "^5.6.0"
pandas = "^1.2.4"
entropylab = "^0.1.2"
entropylab = ">=0.1.2,<0.4.0"

[tool.poetry.dev-dependencies]
black = "^20.8b1"
Expand Down