Skip to content

Commit 8791679

Browse files
committed
DOC: Update docs to match flit-scm usage
1 parent 9482e41 commit 8791679

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff 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
3030
on the most recent git tag. The release process can thus be:
3131

3232
```Shell
3333
git tag -a 1.0.0
34-
python setup.py sdist bdist_wheel
34+
python -m build
3535
twine upload dist/*
3636
```
3737

3838
Note that uploading to PyPI is done via [Continuous integration](#continuous-integration)) when
3939
a tag is pushed to the repository, so only the first step needs to be donne manually.
4040

4141
Note 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

9494
Install 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
```
9898
pip install -e .[dev]

0 commit comments

Comments
 (0)