Skip to content

Commit

Permalink
Drop support for EOL Python 3.4
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Jul 30, 2019
1 parent 376c0dd commit 4b37eed
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 7 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -3,7 +3,6 @@ dist: xenial

python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Expand Up @@ -16,7 +16,7 @@ RUN pyenv install "$PYPY3_VERSION"

# only install certain versions for tox to use
RUN pyenv versions
RUN pyenv global system 2.7.15 3.4.9 3.5.6 3.6.6 3.7.0 "$PYPY_VERSION" "$PYPY3_VERSION"
RUN pyenv global system 2.7.15 3.5.6 3.6.6 3.7.0 "$PYPY_VERSION" "$PYPY3_VERSION"

RUN git config --global user.email "bumpversion_test@example.org"
RUN git config --global user.name "Bumpversion Test"
Expand Down
3 changes: 0 additions & 3 deletions appveyor.yml
Expand Up @@ -11,9 +11,6 @@ environment:
- PYTHON: "C:/Python27"
TOXENV: "py27-configparser"

- PYTHON: "C:/Python34"
TOXENV: "py34"

- PYTHON: "C:/Python35"
TOXENV: "py35"

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -27,6 +27,7 @@
'bump2version = bumpversion.cli:main',
]
},
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
Expand All @@ -36,7 +37,6 @@
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py27-configparser, py34, py35, py36, py37, pypy, pypy3
envlist = py27, py27-configparser, py35, py36, py37, pypy, pypy3

[testenv]
passenv = HOME
Expand Down

0 comments on commit 4b37eed

Please sign in to comment.