From 56b6e8964f071eeb0ddd8362b7f6ad533f8e1f4f Mon Sep 17 00:00:00 2001 From: Caleb Hattingh Date: Wed, 8 May 2024 22:34:19 +0200 Subject: [PATCH 1/2] Fix mac ci --- .github/workflows/pythonapp.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 033d945..3c50a38 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -14,8 +14,8 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11'] - os: [ubuntu-latest, windows-latest, macOS-latest] + python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] + os: [ubuntu-latest, windows-latest, macos-latest] fail-fast: false timeout-minutes: 15 steps: @@ -24,7 +24,6 @@ jobs: uses: actions/setup-python@v3 with: python-version: ${{ matrix.python-version }} - architecture: x64 - name: Install dependencies run: | python -m pip install --upgrade pip From ab987dcd5aa0eae23b7beed603508bebeefdd858 Mon Sep 17 00:00:00 2001 From: Caleb Hattingh Date: Wed, 8 May 2024 23:02:52 +0200 Subject: [PATCH 2/2] Remove Python 3.7 --- .github/workflows/pythonapp.yml | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 3c50a38..e80339f 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -14,7 +14,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] os: [ubuntu-latest, windows-latest, macos-latest] fail-fast: false timeout-minutes: 15 diff --git a/pyproject.toml b/pyproject.toml index b3e36c1..ea213c3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -11,11 +11,11 @@ classifiers = [ "License :: OSI Approved :: Apache Software License", "Natural Language :: English", "Programming Language :: Python", - "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Operating System :: OS Independent" ] description-file = "README.rst"