Skip to content

Commit f6cadc6

Browse files
author
Saurabh Kumar
committed
Drop support for python 2.6
1 parent ab268f0 commit f6cadc6

File tree

5 files changed

+6
-10
lines changed

5 files changed

+6
-10
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: python
22
sudo: false
33
python:
4-
- '2.6'
54
- '2.7'
65
- '3.3'
76
- '3.4'

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,7 @@ Changelog
214214

215215
dev
216216
----------
217+
- Drop support for Python 2.6
217218
- Handle escaped charaters and newlines in quoted values
218219
- Remove any spaces around unquoted key/value
219220

dotenv/compat.py

Lines changed: 0 additions & 4 deletions
This file was deleted.

dotenv/main.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
11
# -*- coding: utf-8 -*-
22
from __future__ import absolute_import
33

4+
import codecs
45
import os
56
import sys
67
import warnings
7-
import codecs
8-
9-
from .compat import OrderedDict
8+
from collections import OrderedDict
109

1110
__escape_decoder = codecs.getdecoder('unicode_escape')
1211

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,22 +37,23 @@
3737
# 'Programming Language :: Python :: 2.3',
3838
# 'Programming Language :: Python :: 2.4',
3939
# 'Programming Language :: Python :: 2.5',
40-
'Programming Language :: Python :: 2.6',
40+
# 'Programming Language :: Python :: 2.6',
4141
'Programming Language :: Python :: 2.7',
4242
'Programming Language :: Python :: 3',
4343
'Programming Language :: Python :: 3.0',
4444
'Programming Language :: Python :: 3.1',
4545
'Programming Language :: Python :: 3.2',
4646
'Programming Language :: Python :: 3.3',
4747
'Programming Language :: Python :: 3.4',
48+
'Programming Language :: Python :: 3.5',
49+
'Programming Language :: Python :: pypi',
4850
'Intended Audience :: Developers',
4951
'Intended Audience :: System Administrators',
5052
'License :: OSI Approved :: BSD License',
5153
'Operating System :: OS Independent',
5254
'Topic :: System :: Systems Administration',
5355
'Topic :: Utilities',
5456
'Environment :: Web Environment',
55-
# 'Framework :: Django',
5657
]
5758
)
5859

0 commit comments

Comments
 (0)