Skip to content

Commit

Permalink
Merge pull request #79 from hugovk/rm-3.4
Browse files Browse the repository at this point in the history
Drop support for EOL Python 3.4
  • Loading branch information
c4urself committed Aug 24, 2019
2 parents eefd886 + b254c94 commit af8871e
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 13 deletions.
7 changes: 0 additions & 7 deletions .travis.yml
@@ -1,13 +1,8 @@
language: python
dist: xenial
# require sudo to avoid Travis falling back to trusty; see
# https://github.com/travis-ci/travis-ci/issues/10110 and also
# https://github.com/travis-ci/travis-ci/issues/9069
sudo: required

python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "3.7"
Expand All @@ -18,10 +13,8 @@ matrix:
include:
- python: "pypy"
dist: trusty
sudo: False
- python: "pypy3"
dist: trusty
sudo: False

install:
- git config --global user.email "bumpversion-test-git@travis.ci"
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 af8871e

Please sign in to comment.