Skip to content
This repository was archived by the owner on Feb 24, 2025. It is now read-only.

Commit d7da47f

Browse files
authored
Merge pull request #469 from jeremycline/remove-py26
Remove Python 2.6 support
2 parents f4bc6df + 5c6b3b2 commit d7da47f

File tree

5 files changed

+4
-25
lines changed

5 files changed

+4
-25
lines changed

.travis.yml

-2
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,6 @@ env:
2424
- PYTHONWARNINGS=always::DeprecationWarning
2525
matrix:
2626
include:
27-
- python: "2.6"
28-
env: TOXENV=py26
2927
- python: "2.7"
3028
env: TOXENV=py27
3129
- python: "2.7"

doc/changelog.rst

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Backwards incompatible changes
1313
`systemd unit files <https://github.com/fedora-infra/fedmsg/tree/1.0.0/initsys>`_
1414
are available in the git repository (`#470 <https://github.com/fedora-infra/fedmsg/pull/470>`_).
1515

16+
* Python 2.6 is no longer supported (`#469 <https://github.com/fedora-infra/fedmsg/pull/469>`_).
17+
1618

1719
0.19.1
1820
======

setup.py

+1-10
Original file line numberDiff line numberDiff line change
@@ -101,15 +101,7 @@
101101

102102
if sys.version_info[0] == 2:
103103
tests_require.append('mock')
104-
if sys.version_info[1] <= 6:
105-
install_requires.extend([
106-
'argparse',
107-
'ordereddict',
108-
'logutils',
109-
])
110-
tests_require.extend([
111-
'unittest2',
112-
])
104+
113105

114106
setup(
115107
name='fedmsg',
@@ -126,7 +118,6 @@
126118
'License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)',
127119
'Operating System :: POSIX :: Linux',
128120
'Programming Language :: Python :: 2',
129-
'Programming Language :: Python :: 2.6',
130121
'Programming Language :: Python :: 2.7',
131122
'Programming Language :: Python :: 3',
132123
'Programming Language :: Python :: 3.4',

test-requirements.txt

-5
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,5 @@ pygments
44
psutil
55
sqlalchemy
66
mock
7-
argparse; python_version <= '2.6'
8-
ordereddict; python_version <= '2.6'
9-
logutils; python_version <= '2.6'
10-
unittest2; python_version <= '2.6'
11-
Twisted==12.2; python_version <= '2.6'
127
flake8
138
click

tox.ini

+1-8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = lint,py26,py27,py34,py35,py36,m2crypto,docs
2+
envlist = lint,py27,py34,py35,py36,m2crypto,docs
33

44
[testenv]
55
passenv = TRAVIS TRAVIS_* FEDMSG_NETWORK
@@ -24,13 +24,6 @@ extras =
2424
commands
2525
consumers
2626

27-
[testenv:py26]
28-
extras =
29-
commands
30-
consumers
31-
crypto_ng
32-
crypto
33-
3427
[testenv:py27]
3528
extras =
3629
commands

0 commit comments

Comments
 (0)