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

Updated CI configuration #275

Merged
merged 2 commits into from
Sep 5, 2023
Merged
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
16 changes: 8 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,47 +26,47 @@ jobs:
include:
- name-suffix: "bdist_wheel-h5py_2.8.0"
os: ubuntu-latest
python-version: 3.7
python-version: '3.7'
BUILD_COMMAND: bdist_wheel
H5PY_OLDER_VERSION: 2.8.0

- name-suffix: "sdist-h5py_2.10.0"
os: ubuntu-latest
python-version: 3.8
python-version: '3.8'
BUILD_COMMAND: sdist
H5PY_OLDER_VERSION: 2.10.0
NUMPY_OLDER_VERSION: 1.23.5

- name-suffix: "sdist-h5py_3.8.0"
- name-suffix: "bdist_wheel-h5py_3.8.0"
os: ubuntu-latest
python-version: 3.10.8
python-version: '3.10.8'
BUILD_COMMAND: bdist_wheel
H5PY_OLDER_VERSION: 3.8.0

- name-suffix: "bdist_wheel-h5py_2.10.0"
os: macos-latest
python-version: 3.7
python-version: '3.7.16'
BUILD_COMMAND: bdist_wheel
H5PY_OLDER_VERSION: 2.10.0
env:
MACOSX_DEPLOYMENT_TARGET: 10.15

- name-suffix: "bdist_wheel-h5py_3.8.0"
os: macos-latest
python-version: 3.10.8
python-version: '3.10.8'
BUILD_COMMAND: bdist_wheel
H5PY_OLDER_VERSION: 3.8.0

# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0

# Runs a single command using the runners shell
- name: Set up Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Expand Down
Loading