Skip to content

Commit 211a40a

Browse files
committed
CI: Adjust configuration to install all extra
The `all` extra bundles all optional dependencies, like, in this case, `numpy`, added to support the `FLOAT_VECTOR` data type.
1 parent 19a898e commit 211a40a

File tree

3 files changed

+3
-9
lines changed

3 files changed

+3
-9
lines changed

.github/workflows/nightly.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff 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

.github/workflows/tests.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff 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

bootstrap.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)