Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MRG] update release notes & pyproject.toml after v4.4.1 #2114

Merged
merged 5 commits into from
Jul 10, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ install: all
$(PYTHON) setup.py install

dist: FORCE
$(PYTHON) setup.py sdist
$(PYTHON) -m build --sdist

test:
tox -e py38
Expand Down
4 changes: 2 additions & 2 deletions doc/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Michael Crusoe.
The basic build environment needed below can be created as follows:

```
conda create -y -n sourmash-rc python=3.8 pip cxx-compiler make twine tox tox-conda "setuptools<60" setuptools_scm
conda create -y -n sourmash-rc python=3.8 pip cxx-compiler make twine tox tox-conda setuptools setuptools_scm
```

Then activate it with `conda activate sourmash-rc`.
Expand Down Expand Up @@ -53,7 +53,7 @@ git push --tags origin

3\. Test the release candidate. Bonus: repeat on macOS:
```
python -m pip install -U virtualenv wheel tox-setuptools-version
python -m pip install -U virtualenv wheel tox-setuptools-version build

cd ..
python -m venv testenv1
Expand Down
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,13 @@ dependencies = [
]

requires-python = ">=3.8"
license = { file = "LICENSE" }
dynamic = ["version"]

[metadata]
license = { text = "BSD 3-Clause License" }

[project.urls]
"Homepage" = "https://sourmash.bio/"
"Documentation" = "https://sourmash.readthedocs.io"
"CI" = "https://github.com/dib-lab/sourmash/actions"
"Source" = "https://github.com/dib-lab/sourmash"
Expand Down