From 6a46b6f64cc6679c9989a67f79f877263f7b79c4 Mon Sep 17 00:00:00 2001 From: Stefan Jansen Date: Mon, 21 Nov 2022 12:49:26 -0500 Subject: [PATCH] pypi as default --- .github/workflows/build_wheels.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 4d5d61de11..fd7fe303fe 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -6,19 +6,19 @@ on: target: description: 'Package Index' required: true - default: 'TESTPYPI' + default: 'PYPI' type: choice - options: ['TESTPYPI', 'PYPI'] + options: [ 'TESTPYPI', 'PYPI' ] jobs: build_wheels: - name: Wheels for py${{ matrix.python }} on ${{ matrix.os }} - upload to ${{github.event.inputs.target}} + name: Wheels for py${{ matrix.python }} on ${{ matrix.os }} - upload to ${{inputs.target}} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [ ubuntu-latest , windows-latest, macos-latest ] - python: [ 37, 38, 39, '310' ] + python: [ '3.7', '3.8', '3.9', '3.10' ] arch: [ auto64 ] steps: