Skip to content

Commit 9310ebe

Browse files
Merge pull request #199 from CITCOM-project/requirements_fix
Move z3_solver to be first dependency
2 parents d6da6a3 + 10f33f1 commit 9310ebe

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
run: |
2525
conda install -c conda-forge pygraphviz
2626
python --version
27-
pip install -e .
27+
pip install -e . --no-cache-dir
2828
pip install -e .[test]
2929
pip install pytest pytest-cov
3030
shell: bash -l {0}

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ requires-python = ">=3.9"
1515
license = { text = "MIT" }
1616
keywords = ["causal inference", "verification"]
1717
dependencies = [
18+
"z3_solver~=4.11.2", # z3_solver does not follow semantic versioning and tying to 4.11 introduces problems
1819
"econml~=0.12",
1920
"fitter~=1.4",
2021
"lhsmdu~=1.1",
@@ -24,9 +25,8 @@ dependencies = [
2425
"scikit_learn~=1.1",
2526
"scipy~=1.7",
2627
"statsmodels~=0.13",
27-
"tabulate~=0.8",
28-
"z3_solver~=4.11.2",
29-
] # z3_solver does not follow semantic versioning and tying to 4.11 introduces problems
28+
"tabulate~=0.8"
29+
]
3030
dynamic = ["version"]
3131

3232
[project.optional-dependencies]

0 commit comments

Comments
 (0)