We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb08395 commit 86d7090Copy full SHA for 86d7090
.github/workflows/build.yml
@@ -66,6 +66,11 @@ jobs:
66
use-only-tar-bz2: true # This needs to be set for proper caching
67
auto-update-conda: true # Required for windows for `use-only-tar-bz2`
68
69
+ - name: Install dependencies and test code
70
+ run: |
71
+ pip3 install -e .
72
+ python3 -c "import paccmann_predictor.models"
73
+
74
- name: Affinity - Install dependencies and run tests
75
run: |
76
python3 -m pip install --upgrade pip
paccmann_predictor/__init__.py
@@ -1,2 +1,2 @@
1
"""Initialization for `paccmann.models` submodule."""
2
-__version__ = "0.0.5"
+__version__ = "1.0.0"
0 commit comments