Skip to content

Commit

Permalink
Merge pull request #19 from zopefoundation/fix-tests
Browse files Browse the repository at this point in the history
Fix the tests by using an older transaction version.
  • Loading branch information
Michael Howitz committed May 9, 2017
2 parents 9b70ff1 + bb806a0 commit fb1e58e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
5 changes: 3 additions & 2 deletions .gitignore
@@ -1,7 +1,8 @@
*.egg-info
*.pyc
.eggs/
.installed.cfg
.tox/
*.pyc
*.egg-info
bin/
develop-eggs/
dist/
Expand Down
2 changes: 0 additions & 2 deletions .travis.yml
@@ -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
8 changes: 5 additions & 3 deletions CHANGES.txt
@@ -1,10 +1,12 @@
Changes
=======

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

- Drop support for Python 2.6 and 3.2.

- Nothing changed yet.
- *Attention:* This versions currently does not support ``transaction >= 1.5``. (See https://github.com/zopefoundation/zope.sqlalchemy/issues/20)


0.7.7 (2016-06-23)
Expand Down
6 changes: 2 additions & 4 deletions setup.py
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 All @@ -37,7 +35,7 @@
install_requires=[
'setuptools',
'SQLAlchemy>=0.5.1',
'transaction',
'transaction < 1.5',
'zope.interface>=3.6.0',
],
extras_require={'test': tests_require},
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
@@ -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 fb1e58e

Please sign in to comment.