Commit bee8f16d by Wenzel Jakob

removed 'pybind11' package which ultimately served no purpose

parent c0ce590f
To release a new version of pybind11:
- Update version macros in `include/pybind11/common.h`
- Update `pybind11/_version.py` (set release version, remove 'dev')
- Update version in `setup.py`
- `git add` and `git commit`.
- `python setup.py sdist upload`.
- `python setup.py bdist_wheel upload`.
- `git tag -a X.X -m 'Release tag comment'`.
- Update `_version.py` (add 'dev' and increment minor).
- `git add` and `git commit`. `git push`. `git push --tags`.
The remote for the last `git push --tags` should be the main repository for
......
from ._version import version_info, __version__
version_info = (1, 3, 'dev0')
__version__ = '.'.join(map(str, version_info))
......@@ -3,7 +3,8 @@
# Setup script for PyPI; use CMakeFile.txt to build the example application
from setuptools import setup
from pybind11 import __version__
__version__ = '1.3'
setup(
name='pybind11',
......@@ -13,7 +14,7 @@ setup(
author_email='wenzel@inf.ethz.ch',
url='https://github.com/wjakob/pybind11',
download_url='https://github.com/wjakob/pybind11/tarball/v' + __version__,
packages=['pybind11'],
packages=[],
license='BSD',
headers=[
'include/pybind11/attr.h',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment