From f74e30537203d580f315cf2f7504588112ee7fe8 Mon Sep 17 00:00:00 2001 From: Srikanth Pagadarai Date: Wed, 29 Jan 2025 09:11:40 -0600 Subject: [PATCH] Updates to Ubuntu and Python versions tested through Github Actions (#60) --- .github/workflows/deploy-pypi-testing.yml | 4 ++-- .github/workflows/deploy-pypi.yml | 4 ++-- .github/workflows/test-win.yml | 10 +++++----- .github/workflows/test.yml | 21 +++++++++++---------- 4 files changed, 20 insertions(+), 19 deletions(-) diff --git a/.github/workflows/deploy-pypi-testing.yml b/.github/workflows/deploy-pypi-testing.yml index 670ae48..a5f3d0b 100644 --- a/.github/workflows/deploy-pypi-testing.yml +++ b/.github/workflows/deploy-pypi-testing.yml @@ -8,10 +8,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Set up Python 3.7 + - name: Set up Python 3.10 uses: actions/setup-python@v4 with: - python-version: 3.7 + python-version: "3.10" - name: Install dependencies run: | diff --git a/.github/workflows/deploy-pypi.yml b/.github/workflows/deploy-pypi.yml index 65a1a39..b0427f5 100644 --- a/.github/workflows/deploy-pypi.yml +++ b/.github/workflows/deploy-pypi.yml @@ -8,10 +8,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Set up Python 3.7 + - name: Set up Python 3.10 uses: actions/setup-python@v4 with: - python-version: 3.7 + python-version: "3.10" - name: Install dependencies run: | diff --git a/.github/workflows/test-win.yml b/.github/workflows/test-win.yml index d1417ef..b039650 100644 --- a/.github/workflows/test-win.yml +++ b/.github/workflows/test-win.yml @@ -8,10 +8,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Set up Python 3.7 + - name: Set up Python 3.10 uses: actions/setup-python@v4 with: - python-version: 3.7 + python-version: "3.10" - name: Install dependencies run: | @@ -64,10 +64,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Set up Python 3.7 + - name: Set up Python 3.10 uses: actions/setup-python@v4 with: - python-version: 3.7 + python-version: "3.10" - name: Install dependencies run: | @@ -132,4 +132,4 @@ jobs: automatic_release_tag: "latest" prerelease: true title: "Latest Development Build" - files: win_build \ No newline at end of file + files: win_build diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9cfca52..866589b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,14 +8,15 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-20.04, ubuntu-22.04] + os: [ubuntu-20.04, ubuntu-22.04, ubuntu-24.04] + python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v4 - - name: Set up Python 3.7 + - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v4 with: - python-version: 3.7 + python-version: ${{ matrix.python-version }} - name: Install dependencies run: | @@ -39,7 +40,7 @@ jobs: - name: Archive generated SOs uses: actions/upload-artifact@v4 with: - name: ${{ matrix.os }}-Build + name: ${{ matrix.os }}-${{ matrix.python-version }}-Build path: libs/ # TestCCentOS: @@ -83,10 +84,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Set up Python 3.7 + - name: Set up Python 3.10 uses: actions/setup-python@v3 with: - python-version: 3.7 + python-version: "3.10" - name: Install dependencies run: | @@ -111,10 +112,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Set up Python 3.8 + - name: Set up Python 3.10 uses: actions/setup-python@v4 with: - python-version: 3.8 + python-version: "3.10" - name: Install dependencies run: | @@ -131,7 +132,7 @@ jobs: runs-on: ubuntu-22.04 strategy: matrix: - python-version: [3.8, 3.9, "3.10", "3.11"] + python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v2 @@ -158,7 +159,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.8, 3.9, "3.10"] + python-version: [3.8, 3.9, "3.10", "3.11", "3.12", "3.13"] steps: - uses: actions/checkout@v2