From 43551ee1e7897690f09e1dcc6ba0946bb5e1c218 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Gl=C3=A4=C3=9Fle?= Date: Thu, 13 Jul 2023 12:41:50 +0200 Subject: [PATCH] Update python versions --- .github/workflows/main.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b800638..d423ef3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -9,10 +9,11 @@ jobs: strategy: matrix: python: - - "3.5" - - "3.6" - "3.7" - "3.8" + - "3.9" + - "3.10" + - "3.11" steps: - uses: actions/checkout@v2 @@ -30,7 +31,7 @@ jobs: - run: flake8 - name: Publish PyPI package - if: startsWith(github.ref, 'refs/tags/v') && matrix.python == '3.8' + if: startsWith(github.ref, 'refs/tags/v') && matrix.python == '3.11' env: TWINE_USERNAME: __token__ TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}