From efea6be93b219e8129099336a8ee57a7f0dec8fd Mon Sep 17 00:00:00 2001 From: Martin Bubel Date: Fri, 12 Jan 2024 18:37:44 +0100 Subject: [PATCH 1/2] bump paramz version to 0.9.6 --- CHANGELOG.md | 2 ++ setup.py | 3 +-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e9b685e..e80d6960 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,8 @@ ## v1.13.0 (2023-12-20) +* update `paramz` depdency to `>=0.9.6` + * limit supported python versions to `">=3.9"` in accordance with numpy * Change from `nosetest` to `pytest` diff --git a/setup.py b/setup.py index 8415d2aa..c9b11c9f 100644 --- a/setup.py +++ b/setup.py @@ -142,8 +142,7 @@ except ModuleNotFoundError: install_requirements = [ "numpy>=1.7", "six", - # "paramz @ git+https://github.com/connorfuhrman/paramz/tree/connorfuhrman/np_type_alias_dep.git", - "paramz @ git+https://github.com/MartinBubel/paramz.git@fix-numpy-types", + "paramz>=0.9.6", "cython>=0.29", ] # 'some-pkg @ git+ssh://git@github.com/someorgname/pkg-repo-name@v1.1#egg=some-pkg', From 8707170548be34e7082b15df9c97b3ad079cce0e Mon Sep 17 00:00:00 2001 From: Martin Bubel Date: Fri, 12 Jan 2024 18:38:25 +0100 Subject: [PATCH 2/2] update github actions release trigger --- .github/workflows/actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index fa4fdb73..90d86d5e 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -53,7 +53,7 @@ jobs: deploy: runs-on: ubuntu-latest needs: develop-matrix - # if: github.event_name == 'release' && github.event.action == 'created' + if: github.event_name == 'release' # && github.event.action == 'created' steps: - name: Checkout uses: actions/checkout@v4