From e468a124296a8867982f7c97d93019f8f9a68a3a Mon Sep 17 00:00:00 2001 From: Jien Cao Date: Sun, 5 May 2024 10:44:28 -0400 Subject: [PATCH 1/2] bump up setup-python version to v5 --- .github/workflows/master.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index 58470d8a..e6c7b4be 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -22,7 +22,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v1 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - name: Install dependencies From 0f8fcd814c7a3483407cb0ee809627e6192dd979 Mon Sep 17 00:00:00 2001 From: Jien Cao Date: Sun, 5 May 2024 11:09:35 -0400 Subject: [PATCH 2/2] update workflow to add python3.12, exclude macos-latest+python3.7 --- .github/workflows/master.yml | 7 +++++-- pyproject.toml | 1 + 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/master.yml b/.github/workflows/master.yml index e6c7b4be..f45b9eea 100644 --- a/.github/workflows/master.yml +++ b/.github/workflows/master.yml @@ -17,7 +17,10 @@ jobs: strategy: matrix: os: [windows-latest, ubuntu-latest, macos-latest] - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + exclude: + - os: macos-latest + python-version: "3.7" steps: - uses: actions/checkout@v2 @@ -43,7 +46,7 @@ jobs: steps: - uses: actions/checkout@v2 - name: Set up Python 3.7 - uses: actions/setup-python@v1 + uses: actions/setup-python@v5 with: python-version: 3.7 - name: Install dependencies diff --git a/pyproject.toml b/pyproject.toml index 50692ee4..802ac89c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,7 @@ classifiers = [ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent",