Skip to content

Enforce NetworkX 3.4 #328

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 5 commits into from
Jun 6, 2025
Merged
Show file tree
Hide file tree
Changes from 3 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
1 change: 1 addition & 0 deletions .github/workflows/ci-tests-drafts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python --version
python -m pip install --upgrade pip
pip install -e .
pip install -e .[test]
Expand Down
4 changes: 4 additions & 0 deletions causal_testing/testing/causal_test_case.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@
self.estimator = estimator
if estimate_params is None:
self.estimate_params = {}

else:
self.estimate_params = estimate_params

Check warning on line 52 in causal_testing/testing/causal_test_case.py

View check run for this annotation

Codecov / codecov/patch

causal_testing/testing/causal_test_case.py#L52

Added line #L52 was not covered by tests

self.effect = base_test_case.effect

if effect_modifier_configuration:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dependencies = [
"fitter~=1.7",
"lifelines~=0.29.0",
"lhsmdu~=1.1",
"networkx~=3.4",
"networkx>=3.4,<3.5",
"numpy~=1.26",
"pandas>=2.1",
"scikit_learn~=1.4",
Expand Down