Skip to content

Commit 6303686

Browse files
committed
BREAKING CHANGE: deprecate python 2.6.x due to app version sourcing
1 parent 2a4a665 commit 6303686

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ matrix:
1515
allow_failures:
1616
- python: "nightly"
1717
include:
18-
- python: "2.6"
18+
- python: "2.7"
1919
dist: trusty
2020
- python: "3.4"
2121
dist: xenial

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ python setup.py install
3131

3232
**Supported versions as of 0.3.3** (offline tests pass with tox):
3333

34-
* python 2.6
34+
* <del>python 2.6</del> removed due to deprecation
3535
* python 2.7
3636
* <del>python 3.2</del> removed due to python2/3 support
3737
* <del>python 3.3</del> removed due to deprecation

circle.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ machine:
77
dependencies:
88
override:
99
- pip install tox tox-pyenv
10-
- pyenv install 2.6.9
11-
- pyenv local 2.6.9 2.7.11 3.3.6 3.4.4 3.5.1
10+
- pyenv install 2.7.11
11+
- pyenv local 2.7.11 3.3.6 3.4.4 3.5.1
1212

1313
test:
1414
override:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def get_version(rel_path):
3737
packages=['upcloud_api', 'upcloud_api.cloud_manager'],
3838
download_url='https://github.com/UpCloudLtd/upcloud-python-api/archive/%s.tar.gz' % version,
3939
license='MIT',
40-
python_requires='>=2.6,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
40+
python_requires='>=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*',
4141
install_requires=[
4242
'requests>=2.6.0',
4343
'six>=1.9.0'

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py26, py27, py34, py35, py36, py37, py38, pypy3
7+
envlist = py27, py34, py35, py36, py37, py38, pypy3
88
skip_missing_interpreters = True
99

1010
[testenv]

0 commit comments

Comments
 (0)