Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/actions/build-test-environment/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ runs:
run: |
git config --global user.email "CI@example.com"
git config --global user.name "CI Almighty"
pip install --upgrade "setuptools<81.0.0"
pip install tabulate # This produces summaries at the end
pip install -e .[test,extractors,streaming_extractors,test_extractors,full]
shell: bash
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/all-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ jobs:

- name: Install packages
run: |
pip install --upgrade "setuptools<81.0.0"
pip install -e .[test_core]
shell: bash

Expand Down
1 change: 1 addition & 0 deletions .github/workflows/core-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
git config --global user.email "CI@example.com"
git config --global user.name "CI Almighty"
python -m pip install -U pip # Official recommended way
pip install --upgrade "setuptools<81.0.0"
pip install -e .[test_core]
- name: Test core with pytest
run: |
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/publish-to-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,10 @@ jobs:
- name: Install dependencies for testing
run: |
python -m pip install -U pip # Official recommended way
pip install --upgrade "setuptools<81.0.0"
pip install pytest
pip install zarr
pip install setuptools wheel twine build
pip install wheel twine build
pip install -e .[test_core]
- name: Test core with pytest
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test_containers_docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install -U pip # Official recommended way
pip install --upgrade "setuptools<81.0.0"
pip install pytest
pip install -e .[full]
pip install docker
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test_containers_singularity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install -U pip # Official recommended way
pip install --upgrade "setuptools<81.0.0"
pip install pytest
pip install -e .[full]
pip install spython
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test_containers_singularity_gpu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
sudo apt-get update
sudo apt-get install -y wget squashfs-tools
python -m pip install -U pip # Official recommended way
pip install --upgrade "setuptools<81.0.0"
pip install pytest
pip install -e .[full]
pip install spython
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test_imports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ jobs:
git config --global user.email "CI@example.com"
git config --global user.name "CI Almighty"
python -m pip install -U pip # Official recommended way
pip install --upgrade "setuptools<81.0.0"
pip install . # This should install core only
- name: Profile Imports
run: |
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/test_kilosort4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ jobs:

- name: Install dependencies
run: |
pip install --upgrade "setuptools<81.0.0"
pip install requests packaging
pip install .

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dependencies = [
]

[build-system]
requires = ["setuptools>=78.0.2"]
requires = ["setuptools>=78.0.2,<81.0.0"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
Expand Down
Loading