Skip to content

Commit

Permalink
bump version for development
Browse files Browse the repository at this point in the history
  • Loading branch information
xrotwang committed Nov 21, 2023
1 parent 6015fe4 commit 6143e58
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 10 deletions.
12 changes: 4 additions & 8 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Releasing pydplace
==================

- Change version to the new version number in
- ``setup.py``
- ``setup.cfg``
- ``src/pydplace/__init__.py``

- Do platform test via ``tox``:
Expand All @@ -26,14 +26,10 @@ git commit -a -m "release <VERSION>"
git tag -a v<VERSION> -m "<VERSION> release"
```

- Release to PyPI (see https://github.com/di/markdown-description-example/issues/1#issuecomment-374474296):
- Release to PyPI:
```shell
python setup.py clean --all
rm dist/*
python setup.py sdist
twine upload dist/*
rm dist/*
python setup.py bdist_wheel
python -m build -n
twine upload dist/*
```

Expand All @@ -45,7 +41,7 @@ git push --tags origin

- Increment the version number and append `.dev0` to start the new development cycle:
- `src/pydplace/__init__.py`
- `setup.py`
- `setup.cfg`

- Commit/push the version change:
```shell
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = pydplace
version = 3.0.0.dev0
version = 3.0.1.dev0
author = Robert Forkel
author_email = [email protected]
description = A cldfbench plugin to curate D-PLACE datasets
Expand Down
2 changes: 1 addition & 1 deletion src/pydplace/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#
from .dataset import DatasetWithSocieties, DatasetWithoutSocieties

__version__ = "2.4.1.dev0"
__version__ = "3.0.1.dev0"
assert DatasetWithSocieties
assert DatasetWithoutSocieties

0 comments on commit 6143e58

Please sign in to comment.