Skip to content

Commit 0146bad

Browse files
committed
updated to 0.8.8 to tweak deploy to install a fully functional and sane pypi release
1 parent fb5fce0 commit 0146bad

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

CONTRIBUTORS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Contributors
22

3-
## Release 0.8.7
3+
## Release 0.8.8
44
Many thanks to Steven Wijnen for his debugging, testing and help with the QP, constraints and FBCV3 implementation. This release supports his dcFBA/endPointFBA https://github.com/SystemsBioinformatics/dynamic-community-fba package.
55

66
## Release 0.8.4

RELEASES.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release history
22

3-
## Release 0.8.7 (2023)
3+
## Release 0.8.8 (2023)
44
Intermediatery release that includes bug fixes, code cleanup and new features to support endPoint FBA. Has alpha support for Flux Balance Constraints V3 features including quadratic objectives, non-storichiometric user constraints and KeyValue pairs. Try the latest format with cbmpy.writeSBML3FBCV3.
55

66
## Release 0.8.4 (2022)

cbmpy/CBConfig.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
__VERSION_MAJOR__ = 0
4141
__VERSION_MINOR__ = 8
42-
__VERSION_MICRO__ = 7
42+
__VERSION_MICRO__ = 8
4343

4444
__CBCONFIG__ = {
4545
'VERSION_MAJOR': __VERSION_MAJOR__,

setup.py

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,11 @@
3131
try:
3232
from setuptools import setup
3333

34-
install_requires_src = ['numpy', 'packaging']
34+
install_requires_src = ['numpy', 'packaging', 'pyparsing', 'python_libsbml', 'lxml', 'xlrd', 'xlwt', 'swiglpk', 'scipy', 'XlsxWriter']
3535
extras_require_src = {
36-
'sympy': ['sympy'],
37-
'glpk': ['swiglpk',],
38-
'sbml': ['python_libsbml', 'lxml',],
39-
'all': ['sympy', 'swiglpk', 'python_libsbml', 'lxml', 'scipy'],
36+
'all': ['sympy', 'numpy', 'packaging', 'pyparsing', 'python_libsbml', 'lxml', 'xlrd', 'xlwt', 'swiglpk', 'scipy', 'nose_py3', 'XlsxWriter'],
4037
}
41-
tests_require_src = ['nose_py3']
38+
tests_require_src = ['numpy', 'packaging', 'pyparsing', 'python_libsbml', 'lxml', 'numpy', 'nose_py3']
4239
except:
4340
from distutils.core import setup
4441

0 commit comments

Comments
 (0)