Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pybind11
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
pybind11
Commits
bee8f16d
Commit
bee8f16d
authored
Feb 22, 2016
by
Wenzel Jakob
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
removed 'pybind11' package which ultimately served no purpose
parent
c0ce590f
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
7 deletions
+4
-7
docs/release.rst
+1
-2
pybind11/__init__.py
+0
-1
pybind11/_version.py
+0
-2
setup.py
+3
-2
No files found.
docs/release.rst
View file @
bee8f16d
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
...
...
pybind11/__init__.py
deleted
100644 → 0
View file @
c0ce590f
from
._version
import
version_info
,
__version__
pybind11/_version.py
deleted
100644 → 0
View file @
c0ce590f
version_info
=
(
1
,
3
,
'dev0'
)
__version__
=
'.'
.
join
(
map
(
str
,
version_info
))
setup.py
View file @
bee8f16d
...
...
@@ -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'
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment