@@ -25,15 +25,15 @@ envlist =
25
25
# Build dependencies according to requirements.txt (all versions fixed).
26
26
# Use ONLY the wheels built and stored by the Sage distribution (no PyPI):
27
27
#
28
- # ./sage -sh -c '(cd pkgs/sagelib && tox -v -v -v -e python-sagewheels-nopypi)'
28
+ # ./sage -sh -c '(cd pkgs/sagemath-standard && tox -v -v -v -e python-sagewheels-nopypi)'
29
29
#
30
30
python-sagewheels-nopypi,
31
31
#
32
32
# Build and test without using the concrete dependencies specified by requirements.txt,
33
33
# using the dependencies declared in pyproject.toml and setup.cfg (install-requires) only:
34
34
# Still use ONLY the wheels built and stored by the Sage distribution (no PyPI).
35
35
#
36
- # ./sage -sh -c '(cd pkgs/sagelib && tox -v -v -v -e python-sagewheels-nopypi-norequirements)'
36
+ # ./sage -sh -c '(cd pkgs/sagemath-standard && tox -v -v -v -e python-sagewheels-nopypi-norequirements)'
37
37
#
38
38
python-sagewheels-nopypi-norequirements,
39
39
#
@@ -44,7 +44,7 @@ envlist =
44
44
# and additionally allow packages from PyPI.
45
45
# Because all versions are fixed, we "should" end up using the prebuilt wheels.
46
46
#
47
- # ./sage -sh -c '(cd pkgs/sagelib && tox -v -v -v -e python-sagewheels)'
47
+ # ./sage -sh -c '(cd pkgs/sagemath-standard && tox -v -v -v -e python-sagewheels)'
48
48
#
49
49
python-sagewheels,
50
50
#
@@ -81,8 +81,8 @@ passenv =
81
81
PKG_CONFIG_PATH
82
82
# Parallel build
83
83
SAGE_NUM_THREADS
84
- # SAGE_LOCAL only for finding the wheels
85
- sagewheels: SAGE_LOCAL
84
+ # SAGE_VENV only for finding the wheels
85
+ sagewheels: SAGE_VENV
86
86
# Location of the wheels (needs to include a PEP 503 compliant
87
87
# Simple Repository index, i.e., a subdirectory "simple")
88
88
sagewheels: SAGE_SPKG_WHEELS
@@ -92,7 +92,7 @@ setenv =
92
92
HOME ={envdir}
93
93
# We supply pip options by environment variables so that they
94
94
# apply both to the installation of the dependencies and of the package
95
- sagewheels: PIP_FIND_LINKS =file://{env:SAGE_SPKG_WHEELS:{env:SAGE_LOCAL :{toxinidir}/../../../../local }/var/lib/sage/wheels}
95
+ sagewheels: PIP_FIND_LINKS =file://{env:SAGE_SPKG_WHEELS:{env:SAGE_VENV :{toxinidir}/../../../../venv }/var/lib/sage/wheels}
96
96
nopypi: PIP_NO_INDEX =true
97
97
# No build isolation for PEP 517 packages - use what is already in the environment
98
98
# Note that this pip env "NO" variable uses inverted logic:
0 commit comments