Skip to content

Commit

Permalink
Drop support for EOL Python 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Jan 29, 2024
1 parent 84fef51 commit d11dcbe
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 13 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ jobs:
python-version: "pypy-3.6"
- os: ubuntu-20.04
python-version: "3.6"
- os: ubuntu-20.04
python-version: "3.5"

runs-on: ${{ matrix.os }}
container: ${{ matrix.container }}
Expand Down
4 changes: 0 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@ matrix:
include:
- python: 3.8
env: TOXENV=update,compile,autopep8,docformatter,isort,pylint,flake8,flake8_tests,pydocstyle,docs COVERAGE_ID=travis-ci
- python: 3.4
env: TOXENV=py34,codecov COVERAGE_ID=travis-ci
- python: 3.5
env: TOXENV=py35,codecov COVERAGE_ID=travis-ci
- python: 3.6
env: TOXENV=py36,codecov COVERAGE_ID=travis-ci
- python: 3.7
Expand Down
2 changes: 1 addition & 1 deletion docs/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Install wcwidth in editable mode::

Execute unit tests using tox_::

tox -e py35,py36,py37,py38,py39,py310,py311,py312
tox -e py36,py37,py38,py39,py310,py311,py312

Updating Unicode Version
------------------------
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,15 +58,14 @@ def main():
'': ['LICENSE', '*.rst'],
},
zip_safe=True,
python_requires='>=3.5',
python_requires='>=3.6',
classifiers=[
'Intended Audience :: Developers',
'Natural Language :: English',
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Operating System :: POSIX',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
Expand Down
5 changes: 1 addition & 4 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = update, compile, autopep8, docformatter, isort, pylint, flake8, pydocstyle, docs, verify_tables, py{35, 36, 37, 38, 39, 310, 311, 312}, pypy{36, 37, 38, 39, 310}
envlist = update, compile, autopep8, docformatter, isort, pylint, flake8, pydocstyle, docs, verify_tables, py{36, 37, 38, 39, 310, 311, 312}, pypy{36, 37, 38, 39, 310}
skip_missing_interpreters = true
# https://tox.wiki/en/4.11.3/faq.html#testing-end-of-life-python-versions
requires = virtualenv<20.22.0
Expand Down Expand Up @@ -110,9 +110,6 @@ deps = -r requirements-tests36.txt
[testenv:pypy36]
deps = -r requirements-tests36.txt

[testenv:py35]
deps = -r requirements-tests37.in

[testenv:update]
basepython = python3.12
usedevelop = true
Expand Down

0 comments on commit d11dcbe

Please sign in to comment.