From 87594415871aab25275d721e39edeb393e4243bb Mon Sep 17 00:00:00 2001 From: sameeul Date: Wed, 9 Aug 2023 12:48:57 -0400 Subject: [PATCH] fix publish wheel workflow --- .github/workflows/publish_pypi.yml | 2 +- plugin.json | 4 ++-- src/nyx/version.h | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish_pypi.yml b/.github/workflows/publish_pypi.yml index 17b69ce2..243e0b91 100644 --- a/.github/workflows/publish_pypi.yml +++ b/.github/workflows/publish_pypi.yml @@ -59,7 +59,7 @@ jobs: CIBW_REPAIR_WHEEL_COMMAND_WINDOWS: "delvewheel repair -w {dest_dir} {wheel}" CIBW_ARCHS: ${{ matrix.cibw_archs }} CIBW_TEST_REQUIRES: numpy pandas pytest requests pyarrow - CIBW_TEST_COMMAND: pytest {project}/tests/python "not arrow" + CIBW_TEST_COMMAND: pytest {project}/tests/python -m "not arrow" - name: Install Dependencies run: python -m pip install --upgrade twine requests diff --git a/plugin.json b/plugin.json index 035d208c..8039d518 100644 --- a/plugin.json +++ b/plugin.json @@ -1,7 +1,7 @@ { "name": "Nyxus", - "version": "0.7.0", - "containerId": "polusai/nyxus:0.7.0", + "version": "0.7.1", + "containerId": "polusai/nyxus:0.7.1", "title": "Nyxus feature extraction", "description": "Nyxus feature extractor", "author": "friskluft + hsidky", diff --git a/src/nyx/version.h b/src/nyx/version.h index 021cf05c..92a1a994 100644 --- a/src/nyx/version.h +++ b/src/nyx/version.h @@ -2,6 +2,6 @@ #define VERSIONH_INCLUDED #define PROJECT_NAME "Nyxus" -#define PROJECT_VER "0.7.0" +#define PROJECT_VER "0.7.1" #endif // VERSIONH_INCLUDED