From 5b325d0d856a20f0dc1e7fb37fbf3bef0effa95b Mon Sep 17 00:00:00 2001 From: CircuitSacul Date: Thu, 10 Oct 2024 21:08:26 -0400 Subject: [PATCH] fix: update workflow python versions --- .github/workflows/ci.yml | 26 +++++++++++++------------- .github/workflows/pypi.yml | 2 +- 2 files changed, 14 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2433385..3dad25d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,19 +8,19 @@ jobs: runs-on: ${{ matrix.os }}-latest strategy: matrix: - python-version: [ '3.8', '3.9', '3.10' ] - os: [ ubuntu, windows ] + python-version: ["3.9", "3.10", "3.11", "3.12"] + os: [ubuntu, windows] name: ${{ matrix.python-version }} ${{ matrix.os }} steps: - - uses: actions/checkout@v2 - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: ${{ matrix.python-version }} - - name: Install Nox - run: pip install nox - - name: Run Nox - run: nox - - name: Upload to CodeCov - uses: codecov/codecov-action@v2 + - uses: actions/checkout@v2 + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + - name: Install Nox + run: pip install nox + - name: Run Nox + run: nox + - name: Upload to CodeCov + uses: codecov/codecov-action@v2 diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index d025ed6..eea4323 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -12,7 +12,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: '3.8' + python-version: "3.9" - name: Install Dependencies run: pip install poetry - name: Build & Upload