From 3a1064f2ffd5a336d06c1b83a508429bddcaef1d Mon Sep 17 00:00:00 2001 From: "William (Zhiyi) Wu" Date: Mon, 8 Jan 2024 15:52:22 +0000 Subject: [PATCH 1/5] finalise changes --- CHANGES | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 71fd2912..9cbf97a1 100644 --- a/CHANGES +++ b/CHANGES @@ -14,7 +14,7 @@ The rules for this file: ------------------------------------------------------------------------------ -*/*/2023 hl2500, xiki-tempula +08/01/2023 hl2500, xiki-tempula * 2.2.0 From 5fca6f29af6f38737d29c9e053001c1bb0b63d0d Mon Sep 17 00:00:00 2001 From: Zhiyi Wu Date: Mon, 8 Jan 2024 18:38:21 +0000 Subject: [PATCH 2/5] fix ci --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0469f78f..89754ab3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -50,7 +50,7 @@ jobs: with: environment-file: devtools/conda-envs/test_env.yaml environment-name: test - extra-specs: | + create-args: | python=${{ matrix.python-version }} - name: Install package (with no dependencies) From 003089c3462365d00f7485567cdbc9e8114627a4 Mon Sep 17 00:00:00 2001 From: "William (Zhiyi) Wu" Date: Tue, 9 Jan 2024 09:10:11 +0000 Subject: [PATCH 3/5] update --- .github/workflows/ci.yaml | 6 +----- CHANGES | 1 + setup.py | 1 - 3 files changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 0469f78f..01ffc7a6 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -29,18 +29,14 @@ jobs: fail-fast: false matrix: os: ["ubuntu-latest", "macOS-latest", "windows-latest"] - python-version: ["3.9", "3.10", "3.11", "3.12"] + python-version: ["3.9", "3.10", "3.11"] # Only test lowest and highest version on the expensive/slow # macOS and windows runners (UPDATE when supported versions change): exclude: - os: macOS-latest python-version: 3.10 - - os: macOS-latest - python-version: 3.11 - os: windows-latest python-version: 3.10 - - os: windows-latest - python-version: 3.11 steps: - uses: actions/checkout@v3 diff --git a/CHANGES b/CHANGES index 9cbf97a1..bca14582 100644 --- a/CHANGES +++ b/CHANGES @@ -19,6 +19,7 @@ The rules for this file: * 2.2.0 Changes + - Remove support for Python 3.12 (issue #344, PR #346). - Require pandas >= 2.1 (PR #340) - For pandas>=2.1, metadata will be loaded from the parquet file (issue #331, PR #340). - add support for Python 3.12, remove Python 3.8 support (issue #341, PR #304). diff --git a/setup.py b/setup.py index 67df7d72..9dc9c26a 100755 --- a/setup.py +++ b/setup.py @@ -32,7 +32,6 @@ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", - "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Bio-Informatics", "Topic :: Scientific/Engineering :: Chemistry", From b47cef42a7a04cbd0768f140b2d6778c6f8195c9 Mon Sep 17 00:00:00 2001 From: Zhiyi Wu Date: Fri, 22 Mar 2024 21:18:48 +0000 Subject: [PATCH 4/5] include python 12 --- .github/workflows/ci.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 8ca37e09..89754ab3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -29,14 +29,18 @@ jobs: fail-fast: false matrix: os: ["ubuntu-latest", "macOS-latest", "windows-latest"] - python-version: ["3.9", "3.10", "3.11"] + python-version: ["3.9", "3.10", "3.11", "3.12"] # Only test lowest and highest version on the expensive/slow # macOS and windows runners (UPDATE when supported versions change): exclude: - os: macOS-latest python-version: 3.10 + - os: macOS-latest + python-version: 3.11 - os: windows-latest python-version: 3.10 + - os: windows-latest + python-version: 3.11 steps: - uses: actions/checkout@v3 From 9fdb2b479adabd2b4d6ec0b4a9fc323aeec5c521 Mon Sep 17 00:00:00 2001 From: Zhiyi Wu Date: Sat, 6 Apr 2024 08:54:43 +0100 Subject: [PATCH 5/5] update --- CHANGES | 3 +-- setup.py | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 7df2facd..bc754f75 100644 --- a/CHANGES +++ b/CHANGES @@ -14,12 +14,11 @@ The rules for this file: ------------------------------------------------------------------------------ -08/01/2023 hl2500, xiki-tempula +06/04/2024 hl2500, xiki-tempula * 2.2.0 Changes - - Remove support for Python 3.12 (issue #344, PR #346). - Require pandas >= 2.1 (PR #340) - For pandas>=2.1, metadata will be loaded from the parquet file (issue #331, PR #340). - add support for Python 3.12, remove Python 3.8 support (issue #341, PR #304). diff --git a/setup.py b/setup.py index 9dc9c26a..67df7d72 100755 --- a/setup.py +++ b/setup.py @@ -32,6 +32,7 @@ "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", + "Programming Language :: Python :: 3.12", "Topic :: Scientific/Engineering", "Topic :: Scientific/Engineering :: Bio-Informatics", "Topic :: Scientific/Engineering :: Chemistry",