Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Resolve conflict between python==3.11 and numba~=0.56.0 for installation on osx-arm64 #129

Merged
merged 11 commits into from
Jul 26, 2024
32 changes: 28 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,36 @@ jobs:
extra_args: --files $(git diff origin/main --name-only)

tests:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
needs: lint
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11"]
ctapipe-version: [v0.19.3]
install-method: [ "mamba", "pip" ]
include:
- os: "ubuntu-latest"
python-version: "3.9"
ctapipe-version: "v0.19.3"
install-method: "mamba"
- os: "ubuntu-latest"
python-version: "3.10"
ctapipe-version: "v0.19.3"
install-method: "mamba"
- os: "ubuntu-latest"
python-version: "3.10"
ctapipe-version: "v0.19.3"
install-method: "pip"
- os: "ubuntu-latest"
python-version: "3.11"
ctapipe-version: "v0.19.3"
install-method: "mamba"
- os: "ubuntu-latest"
python-version: "3.11"
ctapipe-version: "v0.19.3"
install-method: "pip"
# macos 14 image is arm64 based
- os: "macos-14"
python-version: "3.11"
ctapipe-version: "v0.19.3"
install-method: "mamba"

defaults:
run:
Expand Down
4 changes: 2 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ dependencies:
- pip
- pandas
- scipy=1.11
- zeo
- zodb
- pip:
- zeo
- zodb
- mechanize
- browser-cookie3
Loading