Skip to content

Commit 76edc0a

Browse files
authored
Merge pull request #982 from PyCQA/drop_py34
drop python 3.4
2 parents 930e2ca + 9da3938 commit 76edc0a

File tree

5 files changed

+8
-12
lines changed

5 files changed

+8
-12
lines changed

.github/workflows/main.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ jobs:
2525
- os: ubuntu-latest
2626
py: 2.7
2727
toxenv: py
28-
- os: ubuntu-latest
29-
py: 3.4
30-
toxenv: py
3128
- os: ubuntu-latest
3229
py: 3.5
3330
toxenv: py

CONTRIBUTING.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Step 3: Run tests
5555

5656
Before creating a pull request you should run the tests to make sure that the
5757
changes that have been made haven't caused any regressions in functionality.
58-
To run the tests, the core developer team and Travis-CI use `tox`_::
58+
To run the tests, the core developer team and GitHub Actions use `tox`_::
5959

6060
$ pip install -r dev-requirements.txt
6161
$ tox

README.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
pycodestyle (formerly called pep8) - Python style guide checker
22
===============================================================
33

4-
.. image:: https://img.shields.io/travis/PyCQA/pycodestyle.svg
5-
:target: https://travis-ci.org/PyCQA/pycodestyle
4+
.. image:: https://github.com/PyCQA/pycodestyle/actions/workflows/main.yml/badge.svg
5+
:target: https://github.com/PyCQA/pycodestyle/actions/workflows/main.yml
66
:alt: Build status
77

88
.. image:: https://readthedocs.org/projects/pycodestyle/badge/?version=latest

docs/developer.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ conditions of the :ref:`Expat license <license>`. Fork away!
1313

1414
* `Source code <https://github.com/pycqa/pycodestyle>`_ and
1515
`issue tracker <https://github.com/pycqa/pycodestyle/issues>`_ on GitHub.
16-
* `Continuous tests <http://travis-ci.org/pycqa/pycodestyle>`_ against Python
17-
2.7 and 3.4+ as well as the nightly Python build and PyPy, on `Travis CI
18-
platform <https://docs.travis-ci.com//>`_.
16+
* `Continuous tests <https://github.com/PyCQA/pycodestyle/actions>`_ against
17+
Python 2.7 and 3.5+ as well as the nightly Python build and PyPy, on GitHub
18+
Actions.
1919

2020
.. _available on GitHub: https://github.com/pycqa/pycodestyle
2121

@@ -103,7 +103,7 @@ Then be sure to pass the tests::
103103

104104
When contributing to pycodestyle, please observe our `Code of Conduct`_.
105105

106-
To run the tests, the core developer team and Travis CI use tox::
106+
To run the tests, the core developer team and GitHub Actions use tox::
107107

108108
$ pip install -r dev-requirements.txt
109109
$ tox

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ def get_long_description():
3434
namespace_packages=[],
3535
include_package_data=True,
3636
zip_safe=False,
37-
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',
37+
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
3838
install_requires=[
3939
# Broken with Python 3: https://github.com/pypa/pip/issues/650
4040
# 'setuptools',
@@ -54,7 +54,6 @@ def get_long_description():
5454
'Programming Language :: Python :: 2',
5555
'Programming Language :: Python :: 2.7',
5656
'Programming Language :: Python :: 3',
57-
'Programming Language :: Python :: 3.4',
5857
'Programming Language :: Python :: 3.5',
5958
'Programming Language :: Python :: 3.6',
6059
'Programming Language :: Python :: 3.7',

0 commit comments

Comments
 (0)