Skip to content

Commit 71887e9

Browse files
committed
prepare for release
1 parent 013703c commit 71887e9

11 files changed

+35
-35
lines changed

CITATION.cff

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ authors:
1010
title: CBMPy MetaDraft
1111
version: 0.9.2
1212
doi: 10.5281/zenodo.2398336
13-
date-released: 2019-05-18
13+
date-released: 2019-08-08
1414
repository-code: https://github.com/SystemsBioinformatics/cbmpy-metadraft
1515
keywords:
1616
- "genome scale reconstruction"

INSTALL.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ look in the help-->syslog menu for error messages. Or in the log subdirectory.
1212

1313
Please read and agree with the LICENCE.txt for usage and distribution.
1414

15-
(c) Brett G. Olivier, Amsterdam, 2016-2017, all rights reserved.
15+
(c) Brett G. Olivier, Amsterdam, 2016-2019, all rights reserved.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ or individually install the core packages (minimal):
9494
Please cite this software if you use it (the author(s) enthusiasm to carry on maintaining this project depend on it), see CITATION.cff for more details.
9595

9696
```text
97-
Brett G. Olivier. (2018, December 18).
97+
Brett G. Olivier. (2019, October 8).
9898
SystemsBioinformatics/cbmpy-metadraft: Metadraft.
9999
Zenodo. http://doi.org/10.5281/zenodo.2398336
100100
```

conda_env_build_ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ channels:
44
- bgoli
55
- defaults
66
dependencies:
7-
- cbmpy=0.7.21=py27_0
7+
- cbmpy=0.7.25=py27_0
88
- backports=1.0=py27_1
99
- backports.functools_lru_cache=1.5=py27_1
1010
- backports_abc=0.5=py27_0

conda_env_build_win.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ channels:
44
- bgoli
55
- defaults
66
dependencies:
7-
- cbmpy=0.7.21=py27_0
7+
- cbmpy=0.7.25=py27_0
88
- backports=1.0=py27_1
99
- backports.functools_lru_cache=1.5=py27_1
1010
- backports_abc=0.5=py27h0ec6b72_0

conda_env_build_win_py3.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ channels:
44
- bgoli
55
- defaults
66
dependencies:
7-
- cbmpy=0.7.21=py36_0
7+
- cbmpy=0.7.25=py36_0
88
- backcall=0.1.0=py36_0
99
- biopython=1.72=py36h830ac7b_0
1010
- blas=1.0=mkl

libpython/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
MetaDraft: for the reconstruction of Genome Scale Models
66
77
MetaToolkit: MetaDraft (https://github.com/SystemsBioinformatics/cbmpy-metadraft)
8-
Copyright (C) 2016-2018 Brett G. Olivier, Vrije Universiteit Amsterdam, Amsterdam, The Netherlands
8+
Copyright (C) 2016-2019 Brett G. Olivier, Vrije Universiteit Amsterdam, Amsterdam, The Netherlands
99
1010
This program is free software: you can redistribute it and/or modify
1111
it under the terms of the GNU General Public License as published by
@@ -23,4 +23,4 @@
2323
Author: Brett G. Olivier PhD
2424
Contact email: b.g.olivier@vu.nl
2525
26-
"""
26+
"""

libpython/report_templates.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
MetaDraft: for the reconstruction of Genome Scale Models
66
77
MetaToolkit: MetaDraft (https://github.com/SystemsBioinformatics/cbmpy-metadraft)
8-
Copyright (C) 2016-2018 Brett G. Olivier, Vrije Universiteit Amsterdam, Amsterdam, The Netherlands
8+
Copyright (C) 2016-2019 Brett G. Olivier, Vrije Universiteit Amsterdam, Amsterdam, The Netherlands
99
1010
This program is free software: you can redistribute it and/or modify
1111
it under the terms of the GNU General Public License as published by

metadraft.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
MetaDraft: for the reconstruction of Genome Scale Models
66
77
MetaToolkit: MetaDraft (https://github.com/SystemsBioinformatics/cbmpy-metadraft)
8-
Copyright (C) 2016-2018 Brett G. Olivier, Vrije Universiteit Amsterdam, Amsterdam, The Netherlands
8+
Copyright (C) 2016-2019 Brett G. Olivier, Vrije Universiteit Amsterdam, Amsterdam, The Netherlands
99
1010
This program is free software: you can redistribute it and/or modify
1111
it under the terms of the GNU General Public License as published by
@@ -31,7 +31,7 @@ def run_metadraft():
3131
app = QApplication(sys.argv)
3232
widget_splash = QSplashScreen(QPixmap("images/metatoolkit1-03.jpg"))
3333
widget_splash.show()
34-
widget_splash.showMessage("Ver {}-({})\nAuthor: Brett G. Olivier\n(c) Systems Bioinformatics, VU University Amsterdam, Amsterdam, 2017-2018.\nSee Help - About for more details.".format(metadraft_version, cbmpy.__version__), alignment=Qt.AlignBottom)
34+
widget_splash.showMessage("Ver {}-({})\nAuthor: Brett G. Olivier\n(c) Systems Bioinformatics, VU University Amsterdam, Amsterdam, 2017-2019.\nSee Help - About for more details.".format(metadraft_version, cbmpy.__version__), alignment=Qt.AlignBottom)
3535
time.sleep(2)
3636
ex = MetaDraftApp()
3737
widget_splash.finish(ex)

requirements.txt

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,26 @@
1-
backcall==0.1.0
2-
biopython==1.72
3-
cbmpy==0.7.21
4-
certifi==2018.10.15
5-
colorama==0.4.0
6-
decorator==4.3.0
7-
ipython==7.1.1
8-
ipython-genutils==0.2.0
9-
jedi==0.13.1
10-
numpy==1.15.4
1+
backcall>=0.1.0
2+
biopython>=1.72
3+
cbmpy>=0.7.25
4+
certifi>=2018.10.15
5+
colorama>=0.4.0
6+
decorator>=4.3.0
7+
ipython>=7.1.1
8+
ipython-genutils>=0.2.0
9+
jedi>=0.13.1
10+
numpy>=1.15.4
1111
nose>=1.3.7
12-
parso==0.3.1
13-
pickleshare==0.7.5
14-
prompt-toolkit==2.0.7
15-
Pygments==2.2.0
12+
parso>=0.4.0
13+
pickleshare>=0.7.5
14+
prompt-toolkit>=2.0.7
15+
Pygments>=2.2.0
1616
pyparsing>=2.3.0
17-
PyQt5==5.11.3
18-
PyQt5-sip==4.19.13
17+
PyQt5>=5.11.3
18+
PyQt5-sip>=4.19.13
1919
python-libsbml>=5.17.0
20-
sip==4.19.8
21-
six==1.11.0
22-
traitlets==4.3.2
23-
wcwidth==0.1.7
24-
wincertstore==0.2
25-
xlrd==1.1.0
26-
xlwt==1.3.0
20+
sip>=4.19.8
21+
six>=1.11.0
22+
traitlets>=4.3.2
23+
wcwidth>=0.1.7
24+
wincertstore>=0.2
25+
xlrd>=1.1.0
26+
xlwt>=1.3.0

systemtest.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
MetaDraft: for the reconstruction of Genome Scale Models
66
77
MetaToolkit: MetaDraft (https://github.com/SystemsBioinformatics/cbmpy-metadraft)
8-
Copyright (C) 2016-2018 Brett G. Olivier, Vrije Universiteit Amsterdam, Amsterdam, The Netherlands
8+
Copyright (C) 2016-2019 Brett G. Olivier, Vrije Universiteit Amsterdam, Amsterdam, The Netherlands
99
1010
This program is free software: you can redistribute it and/or modify
1111
it under the terms of the GNU General Public License as published by

0 commit comments

Comments
 (0)