Skip to content

Commit a5887e7

Browse files
author
David Flerlage
committed
remove 3.3 support because pytest dropped it
1 parent bb6aeac commit a5887e7

File tree

6 files changed

+5
-10
lines changed

6 files changed

+5
-10
lines changed

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,20 @@ matrix:
1212
- '3.6'
1313
- '3.5'
1414
- '3.4'
15-
- '3.3'
1615
addons:
1716
postgresql: 9.5
1817
env: PG=9.5
1918
- python:
2019
- '3.6'
2120
- '3.5'
2221
- '3.4'
23-
- '3.3'
2422
addons:
2523
postgresql: 9.4
2624
env: PG=9.4
2725
- python:
2826
- '3.6'
2927
- '3.5'
3028
- '3.4'
31-
- '3.3'
3229
addons:
3330
postgresql: 9.3
3431
env: PG=9.3

INSTALL.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Thanks for downloading temporal-sqlalchemy.
22

3-
To install it, make sure you have Python 3.3 or greater installed. Then run
3+
To install it, make sure you have Python 3.4 or greater installed. Then run
44
this command from the command prompt:
55

66
python3 setup.py install

README.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,11 @@ this repo run:
5757
5858
# Install all the Python versions this package supports. This will take some
5959
# time.
60-
pyenv install 3.3.6
6160
pyenv install 3.4.6
6261
pyenv install 3.5.3
6362
pyenv install 3.6.3
6463
65-
pyenv local 3.6.3 3.5.3 3.4.6 3.3.6
64+
pyenv local 3.6.3 3.5.3 3.4.6
6665
6766
# Install the development dependencies
6867
pip3 install -Ur dev-requirements.txt

circle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ machine:
55
dependencies:
66
override:
77
- pip3 install -q -r dev-requirements.txt
8-
- pyenv local 3.6.2 3.5.3 3.4.4 3.3.6
8+
- pyenv local 3.6.2 3.5.3 3.4.4
99

1010
test:
1111
override:

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
'License :: OSI Approved :: BSD License',
1717
'Operating System :: OS Independent',
1818
'Programming Language :: Python :: 3 :: Only',
19-
'Programming Language :: Python :: 3.3',
2019
'Programming Language :: Python :: 3.4',
2120
'Programming Language :: Python :: 3.5',
2221
'Programming Language :: Python :: 3.6',
@@ -41,7 +40,7 @@
4140
platforms=['any'],
4241
keywords='sqlalchemy postgresql orm temporal',
4342
classifiers=CLASSIFIERS,
44-
python_requires='>=3.3',
43+
python_requires='>=3.4',
4544
install_requires=[
4645
'psycopg2>=2.6.2',
4746
'singledispatch>=3.4.0.0;python_version<"3.4"',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py33,py34,py35,py36
2+
envlist = py34,py35,py36
33
usedevelop = true
44
passenv = *
55

0 commit comments

Comments
 (0)