Skip to content

Commit

Permalink
TST: weekly tests against Python 3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
neutrinoceros committed Jul 26, 2024
1 parent d25b54c commit 3e6f6e8
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/bleeding-edge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,19 +40,22 @@ jobs:
# the '-dev' suffix allows to use pre-releases if no final release is available yet
# this version should be upgraded as often as possible, typically once a year when
# Cython, numpy and matplotlib are known to be compatible
python-version: '3.12-dev'
python-version: '3.13-dev'

- name: Install dependencies
# pre-installing kiwisolver (mpl dependency) because it doesn't have wheels
# at the time of writing, so it collides with `--only-binary ":all:"`
# PyYAML needs to be installed in isolation for now, because of a known
# incompatibility with Cython 3
# see https://github.com/yaml/pyyaml/issues/601
# and https://github.com/cython/cython/issues/4568
run: |
python -m pip install --upgrade pip
python -m pip install --upgrade setuptools wheel
python -m pip install --pre --only-binary ":all:" numpy matplotlib \
python -m pip install kiwisolver
python -m pip install --pre --only-binary ":all:" numpy matplotlib Cython \
--extra-index https://pypi.anaconda.org/scientific-python-nightly-wheels/simple
python -m pip install --pre ewah-bool-utils Cython
python -m pip install --pre ewah-bool-utils
python -m pip install git+https://github.com/yt-project/unyt.git
python -m pip install --pre pytest PyYAML
Expand Down

0 comments on commit 3e6f6e8

Please sign in to comment.