Skip to content

Commit f2ce139

Browse files
committed
tidy
1 parent e28deac commit f2ce139

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ jobs:
149149
- name: Install
150150
run: |
151151
pip install --upgrade pip setuptools wheel
152-
pip install --upgrade tox requests urllib3
152+
pip install --upgrade tox
153153
- uses: twisted/python-info-action@v1.0.1
154154
- name: Add PyPy Externals
155155
if: ${{ matrix.os.matrix == 'windows' && matrix.python.implementation == 'pypy'}}

requirements-tests.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ verboselogs >= 1.5
1616
tornado==4.5.3
1717
# using platform_python_implementation rather than
1818
# implementation_name for Python 2 support
19-
Twisted[conch,serial]>=20.3.0; platform_python_implementation == "CPython" or sys_platform != "win32"
19+
Twisted[conch,serial]>=20.3.0; platform_python_implementation != "PyPy" or sys_platform != "win32"
2020
# pywin32 isn't supported on pypy
2121
# https://github.com/mhammond/pywin32/issues/1289
2222
Twisted[conch]>=20.3.0; platform_python_implementation == "PyPy" and sys_platform == "win32"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
'twisted': [
100100
# using platform_python_implementation rather than
101101
# implementation_name for Python 2 support
102-
'Twisted[conch,serial]>=20.3.0; platform_python_implementation == "CPython" or sys_platform != "win32"',
102+
'Twisted[conch,serial]>=20.3.0; platform_python_implementation != "PyPy" or sys_platform != "win32"',
103103
# pywin32 isn't supported on pypy
104104
# https://github.com/mhammond/pywin32/issues/1289
105105
'Twisted[conch]>=20.3.0; platform_python_implementation == "PyPy" and sys_platform == "win32"',

0 commit comments

Comments
 (0)