From 8e9166244f648671035561e060620bea99792f75 Mon Sep 17 00:00:00 2001 From: Stuart Chalk Date: Fri, 4 Nov 2022 12:30:47 -0400 Subject: [PATCH] update to pypi test github action, updated version of python and poetry --- .github/workflows/python-test-publish.yml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/python-test-publish.yml b/.github/workflows/python-test-publish.yml index c1627e6..12f9d4f 100644 --- a/.github/workflows/python-test-publish.yml +++ b/.github/workflows/python-test-publish.yml @@ -9,8 +9,8 @@ name: Upload Python Package to Test-PyPI env: - PYTHON_MAIN_VERSION: 3.7 - POETRY_VERSION: 1.1.4 + PYTHON_MAIN_VERSION: 3.10 + POETRY_VERSION: 1.2.2 on: release: @@ -21,16 +21,17 @@ jobs: name: Test on ${{ matrix.os}} runs-on: ${{ matrix.os}} strategy: - fail-fast: false - matrix: - os: [ubuntu-latest] + fail-fast: false + matrix: + os: [ubuntu-latest] + python-version: ["3.10"] steps: - uses: actions/checkout@v2 - name: Set up Python uses: actions/setup-python@v2 with: - python-version: '3.7' + python-version: '3.10' - name: Install dependencies run: |