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"