From 3d5522aafb6c9cbcbcf4edfa11348f755af97d96 Mon Sep 17 00:00:00 2001 From: Giampaolo Rodola Date: Tue, 18 Jun 2024 23:20:42 +0200 Subject: [PATCH] release --- HISTORY.rst | 4 ++-- Makefile | 4 ++-- docs/index.rst | 4 ++++ scripts/internal/print_dist.py | 8 +++++--- 4 files changed, 13 insertions(+), 7 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 5107b1345..d290221f2 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,7 +1,7 @@ *Bug tracker at https://github.com/giampaolo/psutil/issues* -6.0.0 (IN DEVELOPMENT) -====================== +6.0.0 2024-06-18 +================ **Enhancements** diff --git a/Makefile b/Makefile index 60d82336e..f54354d35 100644 --- a/Makefile +++ b/Makefile @@ -309,8 +309,8 @@ pre-release: ## Check if we're ready to produce a new release. release: ## Upload a new release. ${MAKE} check-sdist ${MAKE} check-wheels - $(PYTHON) -m twine upload dist/*.tar.gz - $(PYTHON) -m twine upload dist/*.whl + $(PYTHON) -m twine upload --verbose dist/*.tar.gz + $(PYTHON) -m twine upload --verbose dist/*.whl ${MAKE} git-tag-release generate-manifest: ## Generates MANIFEST.in file. diff --git a/docs/index.rst b/docs/index.rst index 201333af4..d9fe1c03c 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -2672,6 +2672,10 @@ PyPy3. Timeline ======== +- 2024-06-18: + `6.0.0 `__ - + `what's new `__ - + `diff `__ - 2024-01-19: `5.9.8 `__ - `what's new `__ - diff --git a/scripts/internal/print_dist.py b/scripts/internal/print_dist.py index 5b6531608..1fb4b3f3a 100755 --- a/scripts/internal/print_dist.py +++ b/scripts/internal/print_dist.py @@ -58,11 +58,13 @@ def platform(self): def arch(self): if self.name.endswith(('x86_64.whl', 'amd64.whl')): - return '64' + return '64-bit' if self.name.endswith(("i686.whl", "win32.whl")): - return '32' + return '32-bit' if self.name.endswith("arm64.whl"): return 'arm64' + if self.name.endswith("aarch64.whl"): + return 'aarch64' return '?' def pyver(self): @@ -109,7 +111,7 @@ def main(): tot_files = 0 tot_size = 0 - templ = "%-120s %7s %7s %7s" + templ = "%-120s %7s %8s %7s" for platf, pkgs in groups.items(): ppn = "%s (%s)" % (platf, len(pkgs)) s = templ % (ppn, "size", "arch", "pyver")