Skip to content

Commit e136aa3

Browse files
committed
feature: use ABI3 for cp36+
Signed-off-by: mayeut <[email protected]>
1 parent eacb737 commit e136aa3

File tree

7 files changed

+108
-154
lines changed

7 files changed

+108
-154
lines changed

.ci/appveyor/install.ps1

-85
This file was deleted.

.github/workflows/build.yml

+46-3
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@
2020
on: [push, pull_request]
2121
name: build
2222
jobs:
23-
# Linux + macOS + Python 3.6+
24-
linux-macos-py3:
23+
# Linux + macOS + Windows Python 3.6+
24+
py3:
2525
name: ${{ matrix.os }}-py36-plus
2626
runs-on: ${{ matrix.os }}
2727
timeout-minutes: 20
2828
strategy:
2929
fail-fast: false
3030
matrix:
31-
os: [ubuntu-20.04, macos-11]
31+
os: [ubuntu-20.04, macos-11, windows-2019]
3232

3333
steps:
3434
- name: Cancel previous runs
@@ -62,6 +62,49 @@ jobs:
6262
mv dist/psutil*.tar.gz wheelhouse/
6363
python scripts/internal/print_hashes.py wheelhouse/
6464
65+
# Windows cp37+ tests
66+
# psutil tests do not like running from a virtualenv with python>=3.7 so
67+
# not using cibuildwheel for those. run them "manually" with this job.
68+
windows-py3-test:
69+
name: windows-py3-test-${{ matrix.python }}-${{ matrix.architecture }}
70+
needs: py3
71+
runs-on: windows-2019
72+
timeout-minutes: 20
73+
strategy:
74+
fail-fast: false
75+
matrix:
76+
python: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"]
77+
architecture: ["x86", "x64"]
78+
79+
steps:
80+
- name: Cancel previous runs
81+
uses: styfle/[email protected]
82+
with:
83+
access_token: ${{ github.token }}
84+
- uses: actions/checkout@v3
85+
- uses: actions/setup-python@v3
86+
with:
87+
python-version: "${{ matrix.python }}"
88+
architecture: "${{ matrix.architecture }}"
89+
cache: pip
90+
cache-dependency-path: .github/workflows/build.yml
91+
- name: Download wheels
92+
uses: actions/download-artifact@v3
93+
with:
94+
name: wheels
95+
path: wheelhouse
96+
- name: Run tests
97+
run: |
98+
mkdir .tests
99+
cd .tests
100+
pip install $(find ../wheelhouse -name '*-cp36-abi3-${{ matrix.architecture == 'x86' && 'win32' || 'win_amd64'}}.whl')[test]
101+
export PYTHONWARNINGS=always
102+
export PYTHONUNBUFFERED=1
103+
export PSUTIL_DEBUG=1
104+
python ../psutil/tests/runner.py
105+
python ../psutil/tests/test_memleaks.py
106+
shell: bash
107+
65108
# Linux + macOS + Python 2.7 & 3.5
66109
linux-macos-py2:
67110
name: ${{ matrix.os }}-py27-py35

appveyor.yml

-45
Original file line numberDiff line numberDiff line change
@@ -24,62 +24,17 @@ environment:
2424
PYTHON_VERSION: "2.7.x"
2525
PYTHON_ARCH: "32"
2626

27-
- PYTHON: "C:\\Python36"
28-
PYTHON_VERSION: "3.6.x"
29-
PYTHON_ARCH: "32"
30-
31-
- PYTHON: "C:\\Python37"
32-
PYTHON_VERSION: "3.7.x"
33-
PYTHON_ARCH: "32"
34-
35-
- PYTHON: "C:\\Python38"
36-
PYTHON_VERSION: "3.8.x"
37-
PYTHON_ARCH: "32"
38-
39-
- PYTHON: "C:\\Python39"
40-
PYTHON_VERSION: "3.9.x"
41-
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
42-
PYTHON_ARCH: "32"
43-
44-
- PYTHON: "C:\\Python310"
45-
PYTHON_VERSION: "3.10.x"
46-
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
47-
PYTHON_ARCH: "32"
48-
4927
# 64 bits
5028

5129
- PYTHON: "C:\\Python27-x64"
5230
PYTHON_VERSION: "2.7.x"
5331
PYTHON_ARCH: "64"
5432

55-
- PYTHON: "C:\\Python36-x64"
56-
PYTHON_VERSION: "3.6.x"
57-
PYTHON_ARCH: "64"
58-
59-
- PYTHON: "C:\\Python37-x64"
60-
PYTHON_VERSION: "3.7.x"
61-
PYTHON_ARCH: "64"
62-
63-
- PYTHON: "C:\\Python38-x64"
64-
PYTHON_VERSION: "3.8.x"
65-
PYTHON_ARCH: "64"
66-
67-
- PYTHON: "C:\\Python39-x64"
68-
PYTHON_VERSION: "3.9.x"
69-
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
70-
PYTHON_ARCH: "64"
71-
72-
- PYTHON: "C:\\Python310-x64"
73-
PYTHON_VERSION: "3.10.x"
74-
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
75-
PYTHON_ARCH: "64"
7633

7734
init:
7835
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
7936

8037
install:
81-
- "powershell .ci\\appveyor\\install.ps1"
82-
# - ps: (new-object net.webclient).DownloadFile('https://raw.github.com/pypa/pip/master/contrib/get-pip.py', 'C:/get-pip.py')
8338
- "%WITH_COMPILER% %PYTHON%/python.exe -m pip --version"
8439
- "%WITH_COMPILER% %PYTHON%/python.exe -m pip install --upgrade --user setuptools pip"
8540
- "%WITH_COMPILER% %PYTHON%/python.exe scripts/internal/winmake.py setup-dev-env"

cibuildwheel.toml

+15
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,18 @@ archs = ["x86_64", "universal2"]
1111

1212
[tool.cibuildwheel.macos.environment]
1313
MACOSX_DEPLOYMENT_TARGET = "10.9"
14+
15+
[tool.cibuildwheel.windows]
16+
# psutil tests do not like running from a virtualenv with python>=3.7
17+
# restrict build & tests to cp36
18+
# cp36-abi3 wheels will need to be tested outside cibuildwheel for python>=3.7
19+
build = "cp36-*"
20+
test-command = [
21+
"python {project}/psutil/tests/runner.py",
22+
"python {project}/psutil/tests/test_memleaks.py"
23+
]
24+
25+
[tool.cibuildwheel.windows.environment]
26+
PYTHONWARNINGS = "always"
27+
PYTHONUNBUFFERED = "1"
28+
PSUTIL_DEBUG = "1"

psutil/_psutil_linux.c

+4-11
Original file line numberDiff line numberDiff line change
@@ -292,29 +292,25 @@ psutil_proc_cpu_affinity_set(PyObject *self, PyObject *args) {
292292
pid_t pid;
293293
int i, seq_len;
294294
PyObject *py_cpu_set;
295-
PyObject *py_cpu_seq = NULL;
296295

297296
if (!PyArg_ParseTuple(args, _Py_PARSE_PID "O", &pid, &py_cpu_set))
298297
return NULL;
299298

300299
if (!PySequence_Check(py_cpu_set)) {
301-
PyErr_Format(PyExc_TypeError, "sequence argument expected, got %s",
302-
Py_TYPE(py_cpu_set)->tp_name);
300+
PyErr_Format(PyExc_TypeError, "sequence argument expected, got %R", Py_TYPE(py_cpu_set));
303301
goto error;
304302
}
305303

306-
py_cpu_seq = PySequence_Fast(py_cpu_set, "expected a sequence or integer");
307-
if (!py_cpu_seq)
308-
goto error;
309-
seq_len = PySequence_Fast_GET_SIZE(py_cpu_seq);
304+
seq_len = PySequence_Size(py_cpu_set);
310305
CPU_ZERO(&cpu_set);
311306
for (i = 0; i < seq_len; i++) {
312-
PyObject *item = PySequence_Fast_GET_ITEM(py_cpu_seq, i);
307+
PyObject *item = PySequence_GetItem(py_cpu_set, i);
313308
#if PY_MAJOR_VERSION >= 3
314309
long value = PyLong_AsLong(item);
315310
#else
316311
long value = PyInt_AsLong(item);
317312
#endif
313+
Py_XDECREF(item);
318314
if ((value == -1) || PyErr_Occurred()) {
319315
if (!PyErr_Occurred())
320316
PyErr_SetString(PyExc_ValueError, "invalid CPU value");
@@ -329,12 +325,9 @@ psutil_proc_cpu_affinity_set(PyObject *self, PyObject *args) {
329325
goto error;
330326
}
331327

332-
Py_DECREF(py_cpu_seq);
333328
Py_RETURN_NONE;
334329

335330
error:
336-
if (py_cpu_seq != NULL)
337-
Py_DECREF(py_cpu_seq);
338331
return NULL;
339332
}
340333
#endif /* PSUTIL_HAVE_CPU_AFFINITY */

psutil/arch/windows/process_info.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ psutil_get_cmdline(DWORD pid, int use_peb) {
578578
wcslen(szArglist[i]));
579579
if (py_unicode == NULL)
580580
goto out;
581-
PyList_SET_ITEM(py_retlist, i, py_unicode);
581+
PyList_SetItem(py_retlist, i, py_unicode);
582582
py_unicode = NULL;
583583
}
584584
ret = py_retlist;

0 commit comments

Comments
 (0)