We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6bb3994 commit f83b709Copy full SHA for f83b709
pyproject.toml
@@ -18,7 +18,9 @@ testing = [
18
"pytest >= 8",
19
"idaes-pse",
20
# watertap.flowsheets currently required to be able to run tests
21
- "watertap @ git+https://github.com/watertap-org/watertap@main",
+ # requirements in pyproject.toml cannot use git+https://... URLs
22
+ # or PyPI upload will fail
23
+ "watertap",
24
]
25
26
[project.entry-points.pytest11]
requirements-dev.txt
@@ -6,4 +6,6 @@ Sphinx==7.3.7 ; python_version >= '3.9'
6
sphinx-autoapi==3.0.0
7
sphinx-rtd-theme==2.0.0
8
9
+watertap @ git+https://github.com/watertap-org/watertap@main
10
+
11
--editable .[testing]
0 commit comments