Skip to content

Commit

Permalink
remove references to py3.5
Browse files Browse the repository at this point in the history
leaving historical references to python3.5
  • Loading branch information
graingert committed Feb 28, 2021
1 parent 4f322d9 commit 10da316
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
TOXENV: "alldeps-withcov-posix,coverage-prepare,codecov-push,coveralls-push"
strategy:
matrix:
python-version: ['3.5.4', 3.5, 3.6, 3.7, 3.8, 3.9, pypy-3.6, pypy-3.7]
python-version: [3.6, 3.7, 3.8, 3.9, pypy-3.6, pypy-3.7]

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion INSTALL.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Installation Requirements

To install Twisted, you need:

- Python 3.5/3.6/3.7.
- Python 3.6/3.7/3.8/3.9

- `setuptools <https://pypi.python.org/pypi/setuptools>`_
(installed automatically if you use pip).
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ For information on changes in this release, see the `NEWS <NEWS.rst>`_ file.
What is this?
-------------

Twisted is an event-based framework for internet applications, supporting Python 3.5+.
Twisted is an event-based framework for internet applications, supporting Python 3.6+.
It includes modules for many different purposes, including the following:

- ``twisted.web``: HTTP clients and servers, HTML templating, and a WSGI server
Expand Down
1 change: 0 additions & 1 deletion azure-pipelines/run_test_steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ parameters:
- name: pythonVersion
type: string
values:
- '3.5'
- '3.6'
- '3.7'
- '3.8'
Expand Down
3 changes: 0 additions & 3 deletions azure-pipelines/tests_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ jobs:
- template: 'macos_test_jobs.yml'
parameters:
pythonVersions:
py35: "3.5"
py36: "3.6"
py37: "3.7"
py38: "3.8"
Expand All @@ -28,7 +27,6 @@ jobs:
- template: 'windows_test_jobs.yml'
parameters:
pythonVersions:
py35: "3.5"
py36: "3.6"
py37: "3.7"
py38: "3.8"
Expand All @@ -38,7 +36,6 @@ jobs:
- template: 'windows_test_jobs.yml'
parameters:
pythonVersions:
py35: "3.5"
py36: "3.6"
py37: "3.7"
py38: "3.8"
Expand Down
2 changes: 1 addition & 1 deletion azure-pipelines/windows_test_jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
# Set PYTHONUTF8 environment variable to force UTF-8 mode on Python 3.7+
# on Windows.
#
# Set PYTHONIOENCODING to force UTF-8 encoding on Python 3.5 and Python 3.6.
# Set PYTHONIOENCODING to force UTF-8 encoding on Python 3.6.
# This allows people with non-ASCII characters in their names to file pull requests
# and not trigger CI errors.
PYTHONUTF8: 1
Expand Down
5 changes: 2 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,14 @@ license = MIT
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
long_description_content_type = text/x-rst

[options]
python_requires = >=3.5.4
python_requires = >=3.6
install_requires =
zope.interface >= 4.4.2
constantly >= 15.1
Expand All @@ -50,7 +49,7 @@ test =
; release scripts and process.
dev_release =
towncrier >= 17.4.0
pydoctor >= 20.12.1; python_version >= "3.6"
pydoctor >= 20.12.1
sphinx-rtd-theme~=0.5.0
readthedocs-sphinx-ext~=2.1
sphinx~=3.3
Expand Down

0 comments on commit 10da316

Please sign in to comment.