summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2021-11-29 10:31:58 +0100
committerGitHub <noreply@github.com>2021-11-29 10:31:58 +0100
commiteb2f74c153987b4e0d03aa16931d97e8137d9257 (patch)
treed838ab0e677eeececf134fd42a6e72ab66ec649e /scripts
parenta1ae994cabff37eb86c6ca4564b4f193a73a7b0d (diff)
downloadpsutil-eb2f74c153987b4e0d03aa16931d97e8137d9257.tar.gz
Fix CI tests / wheels / workflow (#2024)
Signed-off-by: Giampaolo Rodola <g.rodola@gmail.com>
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/internal/download_wheels_appveyor.py2
-rwxr-xr-xscripts/internal/print_wheels.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/scripts/internal/download_wheels_appveyor.py b/scripts/internal/download_wheels_appveyor.py
index bc6c9717..5e633d52 100755
--- a/scripts/internal/download_wheels_appveyor.py
+++ b/scripts/internal/download_wheels_appveyor.py
@@ -26,7 +26,7 @@ from psutil._common import print_color
USER = "giampaolo"
PROJECT = "psutil"
BASE_URL = 'https://ci.appveyor.com/api'
-PY_VERSIONS = ['2.7', '3.6', '3.7', '3.8', '3.9']
+PY_VERSIONS = ['2.7', '3.7', '3.8', '3.9', '3.10']
TIMEOUT = 30
diff --git a/scripts/internal/print_wheels.py b/scripts/internal/print_wheels.py
index c2b8d36b..d13a6aa7 100755
--- a/scripts/internal/print_wheels.py
+++ b/scripts/internal/print_wheels.py
@@ -74,7 +74,7 @@ def main():
tot_files = 0
tot_size = 0
- templ = "%-54s %7s %7s %7s"
+ templ = "%-100s %7s %7s %7s"
for platf, wheels in groups.items():
ppn = "%s (total = %s)" % (platf, len(wheels))
s = templ % (ppn, "size", "arch", "pyver")