Skip to content

Commit

Permalink
Bump version to 1.1.2 (#403)
Browse files Browse the repository at this point in the history
  • Loading branch information
Paulocracy authored Sep 21, 2022
1 parent bf4c284 commit cdfbeb0
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,13 @@ We use conda as package manager to install CNApy. You can use [miniconda](https:
3. Create a conda environment with all dependencies

```sh
conda create -n cnapy-1.1.1 -c conda-forge -c cnapy cnapy=1.1.1
conda create -n cnapy-1.1.2 -c conda-forge -c cnapy cnapy=1.1.2
```

4. Activate the cnapy conda environment

```sh
conda activate cnapy-1.1.1
conda activate cnapy-1.1.2
```

5. Run CNApy
Expand Down
2 changes: 1 addition & 1 deletion cnapy/appdata.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ class AppData:

def __init__(self, qapp):
self.qapp = qapp
self.version = "cnapy-1.1.1"
self.version = "cnapy-1.1.2"
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.1
version: 1.1.2

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.1 -c conda-forge -c cnapy cnapy=1.1.1
conda create -n cnapy-1.1.2 -c conda-forge -c cnapy cnapy=1.1.2
```

2. Activate the cnapy conda environment
```
conda activate cnapy-1.1.1
conda activate cnapy-1.1.2
```

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.1
version: 1.1.2

ignore_duplicate_files: True

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

specs:
- conda
# - cnapy=1.1.1
# - cnapy=1.1.2
- 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.1 -c cnapy -c conda-forge -v --yes
call mamba install cnapy=1.1.2 -c cnapy -c conda-forge -v --yes
call pause
call %~dp0..\Scripts\conda clean --all --yes
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.1' %}
{% set version = '1.1.2' %}

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.1' %}
{% set version = '1.1.2' %}

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.1' %}
{% set version = '1.1.2' %}

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.1',
version='1.1.2',
url='https://github.com/cnapy-org/CNApy/',
license='GPLv3+',
description='An integrated environment for metabolic network analysis.',
Expand Down

0 comments on commit cdfbeb0

Please sign in to comment.