mirror of https://github.com/mamba-org/mamba.git
release 0.0.2
This commit is contained in:
parent
913ae26568
commit
073007ba60
|
@ -1,2 +1,2 @@
|
|||
version_info = (0, 0, 1)
|
||||
version_info = (0, 0, 2)
|
||||
__version__ = '.'.join(map(str, version_info))
|
||||
|
|
8
setup.py
8
setup.py
|
@ -3,7 +3,13 @@ from setuptools.command.build_ext import build_ext
|
|||
import sys, os, platform
|
||||
import setuptools
|
||||
|
||||
__version__ = '0.0.1'
|
||||
here = os.path.dirname(os.path.abspath(__file__))
|
||||
|
||||
version_ns = {}
|
||||
with open(os.path.join(here, 'mamba', '_version.py')) as f:
|
||||
exec(f.read(), {}, version_ns)
|
||||
|
||||
__version__ = version_ns['__version__']
|
||||
|
||||
class get_pybind_include(object):
|
||||
"""Helper class to determine the pybind11 include path
|
||||
|
|
Loading…
Reference in New Issue