Skip to content

Bump numpy from 1.24.2 to 2.0.1 #108

Bump numpy from 1.24.2 to 2.0.1

Bump numpy from 1.24.2 to 2.0.1 #108

Workflow file for this run

name: Build a Python package with different versions and operating systems.
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
strategy:
fail-fast: true
matrix:
python-version: ["3.10"]
os: ["ubuntu-latest", "macos-latest"]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Install poetry
run: |
pipx install poetry
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'poetry'
- name: Install dependencies
run: |
poetry install
- name: Build package
run: poetry build