Skip to content

Commit

Permalink
Drop support for Python 2.6 and 3.2.
Browse files Browse the repository at this point in the history
Python 2.6 is no longer supported by zc.buildout.
Python 3.2 is no longer supported by setuptools.
  • Loading branch information
Michael Howitz committed Mar 22, 2017
1 parent 919783a commit f591e82
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 9 deletions.
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
before_install:
- CONFIG_FILE=$(sudo -u postgres psql postgres -c "SHOW config_file;" -q -t | head -1)
Expand Down
6 changes: 3 additions & 3 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
Changes
=======

0.7.8 (unreleased)
------------------
1.0 (unreleased)
----------------

- Nothing changed yet.
- Drop support for Python 2.6 and 3.2.


0.7.7 (2016-06-23)
Expand Down
4 changes: 1 addition & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='zope.sqlalchemy',
version='0.7.8.dev0',
version='1.0.dev0',
packages=find_packages('src'),
package_dir={'': 'src'},
include_package_data=True,
Expand All @@ -25,10 +25,8 @@
"Framework :: Zope3",
"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.2",
"Programming Language :: Python :: 3.3",
"License :: OSI Approved :: Zope Public License",
"Topic :: Software Development :: Libraries :: Python Modules",
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[tox]
envlist =
py26,py27,py32,py33
py27,
py33,
# pypy fails because of some weird test error that might be an issue with
# sqlalchemy, pypy, and issues with object identity.

Expand Down

0 comments on commit f591e82

Please sign in to comment.