Skip to content

Commit

Permalink
Bump to 1.1.5 (#452)
Browse files Browse the repository at this point in the history
  • Loading branch information
Paulocracy authored Jan 24, 2023
1 parent e54800b commit 2f5fd16
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ Everyone is welcome to contribute to CNApy's development. [See our contribution
3. Create a conda environment with all dependencies

```sh
conda create -n cnapy-1.1.4 -c conda-forge -c cnapy cnapy=1.1.4
conda create -n cnapy-1.1.5 -c conda-forge -c cnapy cnapy=1.1.5
```

4. Activate the cnapy conda environment

```sh
conda activate cnapy-1.1.4
conda activate cnapy-1.1.5
```

5. Run CNApy within you activated conda environment
Expand Down
2 changes: 1 addition & 1 deletion cnapy/appdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class AppData:
''' The application data '''

def __init__(self):
self.version = "cnapy-1.1.4"
self.version = "cnapy-1.1.5"
self.format_version = 2
self.unsaved = False
self.project = ProjectData()
Expand Down
2 changes: 1 addition & 1 deletion constructor/linux/construct.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: CNApy
version: 1.1.4
version: 1.1.5

ignore_duplicate_files: True

Expand Down
4 changes: 2 additions & 2 deletions constructor/win/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ We use conda as package manager to install CNApy. You can use [miniconda](https:

1. Create a conda environment with all dependencies
```sh
conda create -n cnapy-1.1.4 -c conda-forge -c cnapy cnapy=1.1.4
conda create -n cnapy-1.1.5 -c conda-forge -c cnapy cnapy=1.1.5
```

2. Activate the cnapy conda environment
```
conda activate cnapy-1.1.4
conda activate cnapy-1.1.5
```

3. Run CNApy
Expand Down
4 changes: 2 additions & 2 deletions constructor/win/construct.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: CNApy
version: 1.1.4
version: 1.1.5

ignore_duplicate_files: True

Expand All @@ -10,7 +10,7 @@ channels:

specs:
- conda
# - cnapy=1.1.4
# - cnapy=1.1.5
- mamba
- pip
- python=3.8
Expand Down
2 changes: 1 addition & 1 deletion constructor/win/post_install.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
call %~dp0..\Scripts\activate.bat

call mamba install cnapy=1.1.4 -c cnapy -c conda-forge -v --yes
call mamba install cnapy=1.1.5 -c cnapy -c conda-forge -v --yes
call pause
call %~dp0..\Scripts\conda clean --all --yes
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,13 +61,13 @@ Everyone is welcome to contribute to CNApy's development. [See our contribution
3. Create a conda environment with all dependencies

```sh
conda create -n cnapy-1.1.4 -c conda-forge -c cnapy cnapy=1.1.4
conda create -n cnapy-1.1.5 -c conda-forge -c cnapy cnapy=1.1.5
```

4. Activate the cnapy conda environment

```sh
conda activate cnapy-1.1.4
conda activate cnapy-1.1.5
```

5. Run CNApy within you activated conda environment
Expand Down
2 changes: 1 addition & 1 deletion recipes/linux/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set version = '1.1.4' %}
{% set version = '1.1.5' %}

package:
name: cnapy
Expand Down
2 changes: 1 addition & 1 deletion recipes/noarch/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set version = '1.1.4' %}
{% set version = '1.1.5' %}

package:
name: cnapy
Expand Down
2 changes: 1 addition & 1 deletion recipes/win/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{% set version = '1.1.4' %}
{% set version = '1.1.5' %}

package:
name: cnapy
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

setup(
name='cnapy',
version='1.1.4',
version='1.1.5',
url='https://github.com/cnapy-org/CNApy/',
license='GPLv3+',
description='An integrated environment for metabolic network analysis.',
Expand Down

0 comments on commit 2f5fd16

Please sign in to comment.