Skip to content

Commit

Permalink
drop python 2.4 and 2.5 support
Browse files Browse the repository at this point in the history
add python 3 support
  • Loading branch information
gweis committed May 21, 2013
1 parent f88a497 commit ab739b7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
7 changes: 1 addition & 6 deletions rdflib_zodb/ZODB.py
Expand Up @@ -6,12 +6,7 @@
# you must export your PYTHONPATH to point to a Z2.8 or Z3+ installation to
# get this to work!, like: export PYTHONPATH="/home/michel/dev/Zope3Trunk/src"

try:
# Zope 3
from persistent import Persistent
except ImportError:
# < Zope 2.8?
from Persistence import Persistent
from persistent import Persistent

from BTrees.IOBTree import IOBTree
from BTrees.OIBTree import OIBTree
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Expand Up @@ -59,10 +59,11 @@ def find_version(filename):
""",
classifiers = ["Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.4",
"Programming Language :: Python :: 2.5",
"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 :: BSD License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Operating System :: OS Independent",
Expand Down

0 comments on commit ab739b7

Please sign in to comment.