File tree 3 files changed +3
-9
lines changed
3 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -54,16 +54,13 @@ jobs:
54
54
cache-dependency-path :
55
55
pyproject.toml
56
56
57
- - name : Set up project
57
+ - name : Update setuptools
58
58
run : |
59
59
60
60
# `setuptools 0.64.0` adds support for editable install hooks (PEP 660).
61
61
# https://github.com/pypa/setuptools/blob/main/CHANGES.rst#v6400
62
62
pip install "setuptools>=64" --upgrade
63
63
64
- # Install package in editable mode.
65
- pip install --use-pep517 --prefer-binary --editable='.[develop,test]'
66
-
67
64
- name : Invoke tests
68
65
run : |
69
66
Original file line number Diff line number Diff line change @@ -64,16 +64,13 @@ jobs:
64
64
cache-dependency-path :
65
65
pyproject.toml
66
66
67
- - name : Set up project
67
+ - name : Update setuptools
68
68
run : |
69
69
70
70
# `setuptools 0.64.0` adds support for editable install hooks (PEP 660).
71
71
# https://github.com/pypa/setuptools/blob/main/CHANGES.rst#v6400
72
72
pip install "setuptools>=64" --upgrade
73
73
74
- # Install package in editable mode.
75
- pip install --use-pep517 --prefer-binary --editable='.[develop,test]'
76
-
77
74
- name : Invoke tests
78
75
run : |
79
76
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ function setup_package() {
68
68
fi
69
69
70
70
# Install package in editable mode.
71
- pip install ${PIP_OPTIONS} --editable=' .[develop,test]'
71
+ pip install ${PIP_OPTIONS} --use-pep517 --prefer-binary -- editable=' .[all, develop,test]'
72
72
73
73
# Install designated SQLAlchemy version.
74
74
if [ -n " ${SQLALCHEMY_VERSION} " ]; then
You can’t perform that action at this time.
0 commit comments