From d22022cd7da273e652cbf2c14be565a47d238048 Mon Sep 17 00:00:00 2001 From: Jarrod Millman Date: Fri, 14 Oct 2022 11:07:53 -0700 Subject: [PATCH] Don't use flit --- CHANGELOG.md | 4 +--- RELEASE.md | 6 +++--- pyproject.toml | 4 ---- 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 97eab40..67038fa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,4 @@ - Document release process [\#2](https://github.com/scientific-python/dev.py/pull/2) ([jarrodmillman](https://github.com/jarrodmillman)) - Add pre-commit hooks and CI linter [\#1](https://github.com/scientific-python/dev.py/pull/1) ([jarrodmillman](https://github.com/jarrodmillman)) - - -\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)* +\* _This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)_ diff --git a/RELEASE.md b/RELEASE.md index df6d942..bff18c0 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -45,9 +45,9 @@ Example `version` - Publish on PyPi: git clean -fxd - pip install flit - flit build - flit publish + pip install -U build twine wheel + python -m build --sdist --wheel + twine upload -s dist/* - Update `version` in `pyproject.toml`. diff --git a/pyproject.toml b/pyproject.toml index dafb55c..2a8bff3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,3 @@ -[build-system] -requires = ["flit_core >=3.7,<4"] -build-backend = "flit_core.buildapi" - [project] name = "dev.py" version = "0.1a2.dev0"