Skip to content

Commit

Permalink
Drop py2.6 support
Browse files Browse the repository at this point in the history
  • Loading branch information
kvesteri committed Mar 20, 2016
1 parent 0bb36e0 commit 10e6060
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ before_script:

language: python
python:
- 2.6
- 2.7
- 3.3
- 3.4
Expand Down
10 changes: 8 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,19 @@ Changelog
Here you can see the full list of changes between each SQLAlchemy-Continuum release.


1.2.4 (2015-01-10)
1.3.0 (2016-03-xx)
^^^^^^^^^^^^^^^^^^

- Dropped py2.6 support


1.2.4 (2016-01-10)
^^^^^^^^^^^^^^^^^^

- Added explicit sequence names for Oracle (#118, courtesy of apfeiffer1)


1.2.3 (2015-01-10)
1.2.3 (2016-01-10)
^^^^^^^^^^^^^^^^^^

- Added use_module_name configuration option (#119, courtesy of kyheo)
Expand Down
5 changes: 1 addition & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,7 @@ def get_version():
platforms='any',
install_requires=[
'SQLAlchemy>=1.0.8',
'SQLAlchemy-Utils>=0.30.12',
'ordereddict>=1.1'
if sys.version_info[0] == 2 and sys.version_info[1] < 7 else ''
'SQLAlchemy-Utils>=0.30.12'
],
extras_require=extras_require,
classifiers=[
Expand All @@ -77,7 +75,6 @@ def get_version():
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py26, py27, py33, py34
envlist = py27, py33, py34

[testenv]
commands = pip install -e ".[test]"
Expand Down

0 comments on commit 10e6060

Please sign in to comment.