Skip to content

Commit

Permalink
Try again
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Li <[email protected]>
  • Loading branch information
adam2392 committed Oct 31, 2023
1 parent f42dbe8 commit 004ecc6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ jobs:
run: |
poetry install --with test
- name: Install Networkx (main)
if: "matrix.networkx == 'main'"
if: "matrix.networkx == 'main'"
run: |
pip uninstall -yq networkx
git clone https://github.com/networkx/networkx.git
Expand Down
2 changes: 1 addition & 1 deletion poetry.lock

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

10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@ exclude = ['*tests']

[tool.poetry.dependencies]
python = ">=3.9,<3.12"
numpy = "^1.23.0"
scipy = "^1.8.0"
numpy = ">=1.22.0"
scipy = ">=1.9.0"
networkx = "^3.1"
importlib-resources = { version = "*", python = "<3.10" }
pygraphviz = { version = "*", optional = true }
Expand All @@ -55,7 +55,7 @@ memory_profiler = { version = "^0.60.0" }
causal-learn = { version = "^0.1.2.8" }
ananke-causal = { version = "^0.3.3" }
pre-commit = "^3.0.4"
pandas = { version = ">=1.1" } # needed for simulation
pandas = { version = ">=1.4" } # needed for simulation
torch = { version = ">=2.0.0,!=2.0.1,!=2.1.0" }

[tool.poetry.group.style]
Expand All @@ -76,7 +76,7 @@ optional = true
[tool.poetry.group.docs.dependencies]
poethepoet = "^0.20.0"
portray = "^1.7.0"
matplotlib = { version = "^3.6.0" }
matplotlib = { version = ">=3.5.0" }
numpydoc = { version = "1.4" }
pydata-sphinx-theme = { version = "^0.9.0" }
sphinx = { version = "^5.1.1" }
Expand All @@ -91,7 +91,7 @@ dowhy = { version = "^0.8" }
pygraphviz = { version = "^1.11" }
memory_profiler = { version = "*" }
scikit-learn = { version = "^1.1.0" } # needed in dowhy's package
pandas = { version = ">=1.1" } # needed in dowhy's package
pandas = { version = ">=1.4" } # needed in dowhy's package
joblib = { version = "^1.1.0" } # needed in dowhy's package
tqdm = { version = "^4.64.0" } # needed in dowhy's package
typing-extensions = { version = "*" } # needed in dowhy's package
Expand Down

0 comments on commit 004ecc6

Please sign in to comment.