File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -24,22 +24,22 @@ All tasks will be inserted into the `pydra.tasks.<yourtaskpackagename>` namespac
2424
2525# Features of this template
2626
27- ## Versioneer
27+ ## Tag-based versioning
2828
29- The [ versioneer ] ( https://github.com/warner/python-versioneer ) tool allows for versioning based
29+ The [ setuptools_scm ] ( https://github.com/pypa/setuptools_scm ) tool allows for versioning based
3030on the most recent git tag. The release process can thus be:
3131
3232``` Shell
3333git tag -a 1.0.0
34- python setup.py sdist bdist_wheel
34+ python -m build
3535twine upload dist/*
3636```
3737
3838Note that uploading to PyPI is done via [ Continuous integration] ( #continuous-integration ) ) when
3939a tag is pushed to the repository, so only the first step needs to be donne manually.
4040
4141Note also that we assume tags will be version numbers and not be prefixed with ` v ` or some other
42- string. See Versioneer documentation for alternative configurations.
42+ string. See ` setuptools_scm ` documentation for alternative configurations.
4343
4444## Namespace packages
4545
@@ -92,7 +92,7 @@ task packages.
9292## For developers
9393
9494Install repo in developer mode from the source directory. It is also useful to
95- install pre-commit to take care of styling via black:
95+ install pre-commit to take care of styling via [ black] ( https://black.readthedocs.io/ ) :
9696
9797```
9898pip install -e .[dev]
You can’t perform that action at this time.
0 commit comments