Skip to content

Commit

Permalink
switched to conda-forge, updated release process docs
Browse files Browse the repository at this point in the history
  • Loading branch information
wjakob committed May 10, 2016
1 parent 9f272dd commit ace7b43
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 42 deletions.
2 changes: 0 additions & 2 deletions conda.recipe/bld.bat

This file was deleted.

3 changes: 0 additions & 3 deletions conda.recipe/build.sh

This file was deleted.

26 changes: 0 additions & 26 deletions conda.recipe/meta.yaml

This file was deleted.

20 changes: 9 additions & 11 deletions docs/release.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,18 @@ To release a new version of pybind11:

- Update the version number and push to pypi
- Update ``pybind11/_version.py`` (set release version, remove 'dev')
- Tag release date in ``doc/changelog.rst``.
- ``git add`` and ``git commit``.
- ``git tag -a vX.Y -m 'vX.Y release'``.
- ``git push``
- ``git push --tags``.
- ``python setup.py sdist upload``.
- ``python setup.py bdist_wheel upload``.
- Tag release date in ``doc/changelog.rst``.
- Tag the commit and push to anaconda.org
- ``git tag -a vX.Y -m 'vX.Y release'``.
- ``conda-build conda.recipe``
This should ouput the path of the generated tar.bz2 for the package
- ``conda-convert --platform all [path/to/tar.bz2] -o .``
- ``for i in *-32/* *-64/*; do anaconda upload -u pybind $i; done``
- Update conda-forge
- change version number in ``meta.yml``
- update checksum to match the one computed by pypi
- Get back to work
- Update ``_version.py`` (add 'dev' and increment minor).
- Update version macros in ``include/pybind11/common.h``
- ``git add`` and ``git commit``. ``git push``. ``git push --tags``.

The remote for the last ``git push --tags`` should be the main repository for
pybind11.
- ``git add`` and ``git commit``.
``git push``

0 comments on commit ace7b43

Please sign in to comment.