Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: build / test Python 3.5 on Linux #2162

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,9 +103,9 @@ jobs:
python ../psutil/tests/test_memleaks.py
shell: bash

# Linux + macOS + Python 2
linux-macos-py2:
name: ${{ matrix.os }}-py2
# Linux (2.7 / 3.5) + macOS 2.7
linux-macos-py-old:
name: ${{ matrix.os }}-py-old
runs-on: ${{ matrix.os }}
timeout-minutes: 20
strategy:
Expand All @@ -117,7 +117,7 @@ jobs:
PYTHONWARNINGS=always PYTHONUNBUFFERED=1 PSUTIL_DEBUG=1 python {project}/psutil/tests/runner.py &&
PYTHONWARNINGS=always PYTHONUNBUFFERED=1 PSUTIL_DEBUG=1 python {project}/psutil/tests/test_memleaks.py
CIBW_TEST_EXTRAS: test
CIBW_BUILD: 'cp27-*'
CIBW_BUILD: 'cp27-* cp35-manylinux*'

steps:
- name: Cancel previous runs
Expand Down
2 changes: 1 addition & 1 deletion CREDITS
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ I: 1956

N: Matthieu Darbois
W: https://github.com/mayeut
I: 2039, 2142, 2147, 2153, 2040, 2102
I: 2039, 2142, 2147, 2153, 2040, 2102, 2162

N: Hugo van Kemenade
W: https://github.com/hugovk
Expand Down
1 change: 1 addition & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ XXXX-XX-XX
- 2102_: use Limited API when building wheels with CPython 3.6+ on Linux,
macOS and Windows. This allows to use pre-built wheels in all future versions
of cPython 3. (patch by Matthieu Darbois)
- 2162_: build & test wheels for Linux CPython 3.5. (patch by Matthieu Darbois)

**Bug fixes**

Expand Down