Skip to content
Draft
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
17 changes: 5 additions & 12 deletions .github/workflows/test-cells-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ jobs:

strategy:
fail-fast: false
max-parallel: 2
max-parallel: 3
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]

concurrency:
group: test-cells-conda-${{ github.ref }}-${{ matrix.python-version }}
Expand All @@ -26,13 +26,6 @@ jobs:
shell: bash -el {0} # -l needed to activate conda

steps:
- name: Staggered sleep
run: |
if [[ "${{ matrix.python-version }}" == '3.8' ]]; then
echo "Sleeping for 3 minutes to stagger the start of the workflow..."
sleep 3m
fi

- name: Checkout
uses: actions/checkout@v6

Expand All @@ -43,7 +36,7 @@ jobs:
sudo apt-get install freeglut3-dev libglew-dev mesa-utils openbox xauth xorg

- name: Setup Miniconda Python ${{ matrix.python-version }}
uses: conda-incubator/setup-miniconda@v3
uses: conda-incubator/setup-miniconda@v4
with:
auto-update-conda: true
miniforge-version: latest
Expand All @@ -69,7 +62,7 @@ jobs:
run: |
conda config --set channel_priority flexible
conda config --get channels
conda install --yes -vv boa conda-build conda-verify
conda install --yes -vv conda-build conda-verify

- name: Set config paths
run: |
Expand Down Expand Up @@ -99,7 +92,7 @@ jobs:

- name: Build
run: |
conda build recipe -m variants/python${{ matrix.python-version }}.yaml --output-folder ./build
conda-build recipe -m variants/python${{ matrix.python-version }}.yaml --output-folder ./build
working-directory: examples/cells/conda

- name: Install
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-cells-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
image: ["ubuntu:22.04", "ubuntu:24.04", "ubuntu:25.10"]
image: ["ubuntu:22.04", "ubuntu:24.04", "ubuntu:26.04"]

container:
image: ${{ matrix.image }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-shapes-pip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]

concurrency:
group: test-shapes-pip-${{ github.ref }}-${{ matrix.python-version }}
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -104,3 +104,5 @@ ENV/

# mypy
.mypy_cache/

.DS_Store
2 changes: 2 additions & 0 deletions examples/cells/conda/variants/python3.14.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
python:
- 3.14.*
Loading