Skip to content

Commit f83b709

Browse files
authored
Move watertap requirement with GitHub URL to requirements-dev.txt for PyPI compat (#11)
1 parent 6bb3994 commit f83b709

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@ testing = [
1818
"pytest >= 8",
1919
"idaes-pse",
2020
# watertap.flowsheets currently required to be able to run tests
21-
"watertap @ git+https://github.com/watertap-org/watertap@main",
21+
# requirements in pyproject.toml cannot use git+https://... URLs
22+
# or PyPI upload will fail
23+
"watertap",
2224
]
2325

2426
[project.entry-points.pytest11]

requirements-dev.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,6 @@ Sphinx==7.3.7 ; python_version >= '3.9'
66
sphinx-autoapi==3.0.0
77
sphinx-rtd-theme==2.0.0
88

9+
watertap @ git+https://github.com/watertap-org/watertap@main
10+
911
--editable .[testing]

0 commit comments

Comments
 (0)