From 86d70906b6362cc4befc76b90c216b98fd87d943 Mon Sep 17 00:00:00 2001 From: fiskrt <43207511+fiskrt@users.noreply.github.com> Date: Tue, 21 May 2024 13:59:43 +0200 Subject: [PATCH] ci: add test for pypi exposed code (#30) * ci: add test for pypi exposed code * chore: bump to 1.0.0 --- .github/workflows/build.yml | 5 +++++ paccmann_predictor/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d67da2a..58090b2 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -66,6 +66,11 @@ jobs: use-only-tar-bz2: true # This needs to be set for proper caching auto-update-conda: true # Required for windows for `use-only-tar-bz2` + - name: Install dependencies and test code + run: | + pip3 install -e . + python3 -c "import paccmann_predictor.models" + - name: Affinity - Install dependencies and run tests run: | python3 -m pip install --upgrade pip diff --git a/paccmann_predictor/__init__.py b/paccmann_predictor/__init__.py index d1753ed..e2c7d08 100644 --- a/paccmann_predictor/__init__.py +++ b/paccmann_predictor/__init__.py @@ -1,2 +1,2 @@ """Initialization for `paccmann.models` submodule.""" -__version__ = "0.0.5" +__version__ = "1.0.0"