Skip to content

Bump setuptools from 69.0.3 to 70.0.0 #477

Bump setuptools from 69.0.3 to 70.0.0

Bump setuptools from 69.0.3 to 70.0.0 #477

Workflow file for this run

name: "tests"
on:
push
jobs:
test:
# The type of runner that the job will run on
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ ubuntu-latest, windows-latest, macos-latest ]
python-version: ['3.9', '3.10', '3.11', '3.12' ]
exclude:
- os: windows-latest
python-version: '3.12'
# 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@v4
- uses: cvxgrp/.github/actions/test@main
with:
python-version: ${{ matrix.python-version }}