Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
wpbonelli committed Oct 29, 2024
1 parent 63ed2b4 commit 691f4f9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/commit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ jobs:
- name: Install FloPy
run: |
pip install .
pip install ".[codegen]"
pip install ".[dev]"
- name: Install Modflow-related executables
uses: modflowpy/install-modflow-action@v1
Expand Down
2 changes: 1 addition & 1 deletion autotest/test_generate_classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ def test_generate_classes_from_github_refs(
print(f"Using temp venv at {venv} to test class generation from {ref}")

# install flopy and dependencies
deps = [str(project_root_path), "modflow-devtools"]
deps = [str(project_root_path), "modflow-devtools", "Jinja2", "boltons"]
for dep in deps:
out, err, ret = run_cmd(str(pip), "install", dep, verbose=True)
assert not ret, out + err
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@ dynamic = ["version", "readme"]
dev = ["flopy[codegen,lint,test,optional,doc]"]
codegen = [
"boltons>=1.0",
"Jinja2>=3.0"
"Jinja2>=3.0",
"modflow-devtools"
]
lint = [
"cffconvert",
Expand Down

0 comments on commit 691f4f9

Please sign in to comment.