Skip to content

Commit

Permalink
Prepare project for integrating to colomoto conda
Browse files Browse the repository at this point in the history
Conda Build has been changed to colomoto.
  • Loading branch information
szlaura committed Nov 20, 2024
1 parent 67bc01f commit 349c843
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ jobs:
conda install -y anaconda-client conda-build conda-verify conda-libmamba-solver
conda config --set solver libmamba
conda config --set channel_priority flexible
conda config --set anaconda_upload no
conda config --set anaconda_upload yes
- name: Build Conda package
run: |
set -e
cd conda
conda build --user szlaura --token $ANACONDA_API_TOKEN --override-channels -c defaults -c conda-forge -c colomoto .
conda build --user colomoto --token $ANACONDA_API_TOKEN --override-channels -c defaults -c conda-forge -c colomoto .
env:
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ This will install the PyDrugLogics package and handle all dependencies automatic
### Install PyDrugLogics via conda
*Note*: CoLoMoTo conda integration is ongoing.
```bash
conda install szlaura::pydruglogics
conda install colomoto::pydruglogics
```

### Install from Source
Expand Down
2 changes: 1 addition & 1 deletion conda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% set name = "pydruglogics" %}
{% set version = environ.get('VERSION', '0.1.3') %}
{% set version = environ.get('VERSION', '0.1.4') %}

package:
name: {{ name|lower }}
Expand Down
2 changes: 1 addition & 1 deletion pydruglogics/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
logger = logging.getLogger(__name__)


__version__ = "0.1.3"
__version__ = "0.1.4"

__all__ = [
"Perturbation",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="pydruglogics",
version="0.1.3",
version="0.1.4",
author="Laura Szekeres",
author_email="[email protected]",
description="PyDrugLogics: a Python package designed for constructing, optimizing Boolean models and performs in-silico perturbations of the models.",
Expand Down

0 comments on commit 349c843

Please sign in to comment.