From a57acd4e098abc4eb7e26b5fd1ecfdf823b6d301 Mon Sep 17 00:00:00 2001 From: "Ankur Sinha (Ankur Sinha Gmail)" Date: Wed, 26 Jul 2023 13:24:52 +0100 Subject: [PATCH 1/6] chore(ci): bump GH actions --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 56203bc..99399f6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,9 +16,9 @@ jobs: steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }} From 03145eb5e6963a3f2c77d7de790fce8e701590cf Mon Sep 17 00:00:00 2001 From: pgleeson Date: Wed, 26 Jul 2023 13:37:38 +0100 Subject: [PATCH 2/6] Remove travis test script --- .travis.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 5f4f44c..0000000 --- a/.travis.yml +++ /dev/null @@ -1,27 +0,0 @@ - -dist: xenial -sudo: false - -addons: - apt: - packages: - - python-numpy - - python-scipy - -language: python - -python: - - "2.7" - - "3.6" - - "3.7" - - -install: - - - pip install scipy # Why needed again? - - python setup.py install - -script: - - pwd - - nosetests -vs - From f056854b0f25c292879c265dcabbc47253d7854a Mon Sep 17 00:00:00 2001 From: "Ankur Sinha (Ankur Sinha Gmail)" Date: Tue, 12 Dec 2023 15:58:25 +0000 Subject: [PATCH 3/6] feat: add py312, drop py37 --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 39700d1..5bd7800 100644 --- a/setup.cfg +++ b/setup.cfg @@ -13,11 +13,11 @@ classifiers= Intended Audience :: Science/Research Natural Language :: English Operating System :: OS Independent - 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 Topic :: Scientific/Engineering [options] From 37210d8c0de7ace5219d9c86385a01b2845c174a Mon Sep 17 00:00:00 2001 From: "Ankur Sinha (Ankur Sinha Gmail)" Date: Tue, 12 Dec 2023 15:58:57 +0000 Subject: [PATCH 4/6] ci: drop py37, add py312 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 99399f6..f459b22 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: From 4c7e987e1cd47cb77a9a665934795ddc15c6df59 Mon Sep 17 00:00:00 2001 From: "Ankur Sinha (Ankur Sinha Gmail)" Date: Wed, 23 Oct 2024 16:45:39 +0100 Subject: [PATCH 5/6] feat: support py3.8 - py3.13 --- .github/workflows/ci.yml | 2 +- setup.cfg | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 99399f6..3ae3e09 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] steps: diff --git a/setup.cfg b/setup.cfg index 39700d1..ede34e6 100644 --- a/setup.cfg +++ b/setup.cfg @@ -13,11 +13,12 @@ classifiers= Intended Audience :: Science/Research Natural Language :: English Operating System :: OS Independent - 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 + Programming Language :: Python :: 3.13 Topic :: Scientific/Engineering [options] From d8aedcf3e9e80c76f446260ac99a1e135d37b840 Mon Sep 17 00:00:00 2001 From: Padraig Gleeson Date: Thu, 10 Apr 2025 18:23:34 +0100 Subject: [PATCH 6/6] Update ci.yml - add experimental branch --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3ae3e09..d258730 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,9 +2,9 @@ name: Continuous builds on: push: - branches: [ master, development ] + branches: [ master, development, experimental ] pull_request: - branches: [ master, development ] + branches: [ master, development, experimental ] jobs: build: