Skip to content

Commit

Permalink
Drop support for Python 3.3.
Browse files Browse the repository at this point in the history
  • Loading branch information
hannosch committed Feb 2, 2017
1 parent 066c801 commit 0de69e0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 12 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ language: python
sudo: false
python:
- "2.7"
- "3.3"
- "3.4"
- "3.5"
- "3.6"
Expand Down
4 changes: 2 additions & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
Changelog
=========

3.0 (unreleased)
----------------
3.0a2 (unreleased)
------------------

- #2: Add Python 3 compatibility.

Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
include_dirs=['include', 'src']),
]

__version__ = '3.0.dev0'
__version__ = '3.0a2.dev0'

setup(
name='Persistence',
Expand All @@ -42,7 +42,6 @@
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
Expand Down
8 changes: 1 addition & 7 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py27,py27-pure,py33,py33-pure,py34,py34-pure,py35,py35-pure,py36,py36-pure,pypy
py27,py27-pure,py34,py34-pure,py35,py35-pure,py36,py36-pure,pypy

[testenv]
install_command = pip install --no-cache-dir --no-binary=:all: {opts} {packages}
Expand All @@ -17,12 +17,6 @@ basepython =
setenv =
PURE_PYTHON = 1

[testenv:py33-pure]
basepython =
python3.3
setenv =
PURE_PYTHON = 1

[testenv:py34-pure]
basepython =
python3.4
Expand Down

0 comments on commit 0de69e0

Please sign in to comment.