File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 81
81
echo "PRE_BUILT_SETUPTOOLS_SDIST=$(ls dist/*.tar.gz)" >> $GITHUB_ENV
82
82
echo "PRE_BUILT_SETUPTOOLS_WHEEL=$(ls dist/*.whl)" >> $GITHUB_ENV
83
83
rm -rf setuptools.egg-info # Avoid interfering with the other tests
84
+ - name : Workaround for unreleased PyNaCl (pyca/pynacl#805)
85
+ if : contains(matrix.python, 'pypy')
86
+ run : echo "SETUPTOOLS_ENFORCE_DEPRECATION=0" >> $GITHUB_ENV
84
87
- name : Install tox
85
88
run : |
86
89
python -m pip install tox
Original file line number Diff line number Diff line change 6
6
# ^-- use dev version while we wait for the new release
7
7
setenv =
8
8
PYTHONWARNDEFAULTENCODING = 1
9
- SETUPTOOLS_ENFORCE_DEPRECATION = 1
9
+ SETUPTOOLS_ENFORCE_DEPRECATION = {env:SETUPTOOLS_ENFORCE_DEPRECATION:1}
10
10
commands =
11
11
pytest {posargs}
12
12
usedevelop = True
13
13
extras =
14
14
testing
15
15
pass_env =
16
16
SETUPTOOLS_USE_DISTUTILS
17
+ SETUPTOOLS_ENFORCE_DEPRECATION
17
18
PRE_BUILT_SETUPTOOLS_WHEEL
18
19
PRE_BUILT_SETUPTOOLS_SDIST
19
20
TIMEOUT_BACKEND_TEST # timeout (in seconds) for test_build_meta
You can’t perform that action at this time.
0 commit comments