File tree Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Expand file tree Collapse file tree 3 files changed +3
-9
lines changed Original file line number Diff line number Diff line change @@ -54,16 +54,13 @@ jobs:
5454 cache-dependency-path :
5555 pyproject.toml
5656
57- - name : Set up project
57+ - name : Update setuptools
5858 run : |
5959
6060 # `setuptools 0.64.0` adds support for editable install hooks (PEP 660).
6161 # https://github.com/pypa/setuptools/blob/main/CHANGES.rst#v6400
6262 pip install "setuptools>=64" --upgrade
6363
64- # Install package in editable mode.
65- pip install --use-pep517 --prefer-binary --editable='.[develop,test]'
66-
6764 - name : Invoke tests
6865 run : |
6966
Original file line number Diff line number Diff line change @@ -64,16 +64,13 @@ jobs:
6464 cache-dependency-path :
6565 pyproject.toml
6666
67- - name : Set up project
67+ - name : Update setuptools
6868 run : |
6969
7070 # `setuptools 0.64.0` adds support for editable install hooks (PEP 660).
7171 # https://github.com/pypa/setuptools/blob/main/CHANGES.rst#v6400
7272 pip install "setuptools>=64" --upgrade
7373
74- # Install package in editable mode.
75- pip install --use-pep517 --prefer-binary --editable='.[develop,test]'
76-
7774 - name : Invoke tests
7875 run : |
7976
Original file line number Diff line number Diff line change @@ -68,7 +68,7 @@ function setup_package() {
6868 fi
6969
7070 # 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]'
7272
7373 # Install designated SQLAlchemy version.
7474 if [ -n " ${SQLALCHEMY_VERSION} " ]; then
You can’t perform that action at this time.
0 commit comments