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 6ab91fd commit 0b41121Copy full SHA for 0b41121
.jenkins.sh
@@ -28,7 +28,7 @@
28
#
29
# DISABLE_COVERAGE: if nonempty, then coverage analysis is disabled
30
31
-# PYOMO_SETUP_ARGS: passed to the 'python setup.py develop' command
+# PYOMO_SETUP_ARGS: passed to the 'pip install' command
32
# (e.g., to specify --with-cython)
33
34
# PYOMO_DOWNLOAD_ARGS: passed to the 'pyomo download-extensions' command
@@ -94,7 +94,7 @@ if test -z "$MODE" -o "$MODE" == setup; then
94
echo "PyUtilib not found; skipping"
95
fi
96
pushd "$WORKSPACE/pyomo" || exit 1
97
- python setup.py develop $PYOMO_SETUP_ARGS || exit 1
+ pip install -e . || exit 1
98
popd
99
100
# DO NOT install pyomo-model-libraries
0 commit comments