Skip to content

Commit

Permalink
updated to 0.8.8 to tweak deploy to install a fully functional and sa…
Browse files Browse the repository at this point in the history
…ne pypi release
  • Loading branch information
bgoli committed Nov 1, 2023
1 parent fb5fce0 commit 0146bad
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTORS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Contributors

## Release 0.8.7
## Release 0.8.8
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.

## Release 0.8.4
Expand Down
2 changes: 1 addition & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Release history

## Release 0.8.7 (2023)
## Release 0.8.8 (2023)
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.

## Release 0.8.4 (2022)
Expand Down
2 changes: 1 addition & 1 deletion cbmpy/CBConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

__VERSION_MAJOR__ = 0
__VERSION_MINOR__ = 8
__VERSION_MICRO__ = 7
__VERSION_MICRO__ = 8

__CBCONFIG__ = {
'VERSION_MAJOR': __VERSION_MAJOR__,
Expand Down
9 changes: 3 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,14 +31,11 @@
try:
from setuptools import setup

install_requires_src = ['numpy', 'packaging']
install_requires_src = ['numpy', 'packaging', 'pyparsing', 'python_libsbml', 'lxml', 'xlrd', 'xlwt', 'swiglpk', 'scipy', 'XlsxWriter']
extras_require_src = {
'sympy': ['sympy'],
'glpk': ['swiglpk',],
'sbml': ['python_libsbml', 'lxml',],
'all': ['sympy', 'swiglpk', 'python_libsbml', 'lxml', 'scipy'],
'all': ['sympy', 'numpy', 'packaging', 'pyparsing', 'python_libsbml', 'lxml', 'xlrd', 'xlwt', 'swiglpk', 'scipy', 'nose_py3', 'XlsxWriter'],
}
tests_require_src = ['nose_py3']
tests_require_src = ['numpy', 'packaging', 'pyparsing', 'python_libsbml', 'lxml', 'numpy', 'nose_py3']
except:
from distutils.core import setup

Expand Down

0 comments on commit 0146bad

Please sign in to comment.