diff --git a/.github/workflows/Publish_MoorPy.yml b/.github/workflows/Publish_MoorPy.yml index 3b57db6..01c2cd6 100644 --- a/.github/workflows/Publish_MoorPy.yml +++ b/.github/workflows/Publish_MoorPy.yml @@ -13,10 +13,6 @@ on: jobs: build_and_upload_pypi: runs-on: ubuntu-latest - strategy: - fail-fast: false - matrix: - python-version: ["3.9", "3.10", "3.11"] # upload to PyPI on every tag starting with 'v' #if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') @@ -26,11 +22,11 @@ jobs: - name: checkout repository uses: actions/checkout@v3 - - name: Set up Python ${{ matrix.python-version }} + - name: Set up Python uses: actions/setup-python@v4 id: cp with: - python-version: ${{ matrix.python-version }} + python-version: "3.11" update-environment: true - name: Install pypa/build