Skip to content

Commit 3d5522a

Browse files
committed
release
1 parent 5b30ef4 commit 3d5522a

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

HISTORY.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
*Bug tracker at https://github.com/giampaolo/psutil/issues*
22

3-
6.0.0 (IN DEVELOPMENT)
4-
======================
3+
6.0.0 2024-06-18
4+
================
55

66
**Enhancements**
77

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -309,8 +309,8 @@ pre-release: ## Check if we're ready to produce a new release.
309309
release: ## Upload a new release.
310310
${MAKE} check-sdist
311311
${MAKE} check-wheels
312-
$(PYTHON) -m twine upload dist/*.tar.gz
313-
$(PYTHON) -m twine upload dist/*.whl
312+
$(PYTHON) -m twine upload --verbose dist/*.tar.gz
313+
$(PYTHON) -m twine upload --verbose dist/*.whl
314314
${MAKE} git-tag-release
315315

316316
generate-manifest: ## Generates MANIFEST.in file.

docs/index.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2672,6 +2672,10 @@ PyPy3.
26722672
Timeline
26732673
========
26742674

2675+
- 2024-06-18:
2676+
`6.0.0 <https://pypi.org/project/psutil/6.0.0/#files>`__ -
2677+
`what's new <https://github.com/giampaolo/psutil/blob/master/HISTORY.rst#600>`__ -
2678+
`diff <https://github.com/giampaolo/psutil/compare/release-5.9.8...release-6.0.0#files_bucket>`__
26752679
- 2024-01-19:
26762680
`5.9.8 <https://pypi.org/project/psutil/5.9.8/#files>`__ -
26772681
`what's new <https://github.com/giampaolo/psutil/blob/master/HISTORY.rst#598>`__ -

scripts/internal/print_dist.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,13 @@ def platform(self):
5858

5959
def arch(self):
6060
if self.name.endswith(('x86_64.whl', 'amd64.whl')):
61-
return '64'
61+
return '64-bit'
6262
if self.name.endswith(("i686.whl", "win32.whl")):
63-
return '32'
63+
return '32-bit'
6464
if self.name.endswith("arm64.whl"):
6565
return 'arm64'
66+
if self.name.endswith("aarch64.whl"):
67+
return 'aarch64'
6668
return '?'
6769

6870
def pyver(self):
@@ -109,7 +111,7 @@ def main():
109111

110112
tot_files = 0
111113
tot_size = 0
112-
templ = "%-120s %7s %7s %7s"
114+
templ = "%-120s %7s %8s %7s"
113115
for platf, pkgs in groups.items():
114116
ppn = "%s (%s)" % (platf, len(pkgs))
115117
s = templ % (ppn, "size", "arch", "pyver")

0 commit comments

Comments
 (0)