Skip to content

Commit

Permalink
fix: update the action file
Browse files Browse the repository at this point in the history
  • Loading branch information
CaibinSh committed May 23, 2024
1 parent d018c90 commit 23ed4a7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-conda-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ jobs:
max-parallel: 5
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
- name: Set up Python 3.10
uses: actions/setup-python@v2
with:
python-version: 3.8
python-version: 3.10
- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
echo $CONDA/bin >> $GITHUB_PATH
- name: Install dependencies
run: |
conda env create -f scar-cpu.yml
mamba env create -f scar-cpu.yml
- name: Run binary
run: |
export PATH="$GITHUB_PATH:$PATH"
Expand All @@ -29,7 +29,7 @@ jobs:
run: |
export PATH="$GITHUB_PATH:$PATH"
source activate scar
conda install pylint
mamba install pylint
pylint scar --fail-under 8.5 --disable=R,C --generated-members=torch.*
- name: Run unit tests
run: |
Expand Down
2 changes: 1 addition & 1 deletion scar/main/__version__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
"""version here"""

__version__ = "0.5.2"
__version__ = "0.5.3"
_author = "Caibin Sheng"
_copyright = "2022, Novartis Institute for BioMedical Research"

0 comments on commit 23ed4a7

Please sign in to comment.