Skip to content

Commit c45743a

Browse files
authored
Merge pull request datastax#953 from greut/py37
tox: remove 3.3
2 parents a726c6e + 2f90da5 commit c45743a

File tree

7 files changed

+5
-7
lines changed

7 files changed

+5
-7
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
language: python
22
python:
33
- "2.7"
4-
- "3.3"
54
- "3.4"
65
- "3.5"
76
- "3.6"

README-dev.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ it with the ``PROTOCOL_VERSION`` environment variable::
124124

125125
Testing Multiple Python Versions
126126
--------------------------------
127-
If you want to test all of python 2.7, 3.3, 3.4 and pypy, use tox (this is what
127+
If you want to test all of python 2.7, 3.4, 3.5, 3.6 and pypy, use tox (this is what
128128
TravisCI runs)::
129129

130130
tox

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ DataStax Python Driver for Apache Cassandra
66

77
A modern, `feature-rich <https://github.com/datastax/python-driver#features>`_ and highly-tunable Python client library for Apache Cassandra (2.1+) using exclusively Cassandra's binary protocol and Cassandra Query Language v3.
88

9-
The driver supports Python 2.7, 3.3, 3.4, 3.5, and 3.6.
9+
The driver supports Python 2.7, 3.4, 3.5, and 3.6.
1010

1111
If you require compatibility with DataStax Enterprise, use the `DataStax Enterprise Python Driver <http://docs.datastax.com/en/developer/python-dse-driver/>`_.
1212

docs/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A Python client driver for `Apache Cassandra <http://cassandra.apache.org>`_.
44
This driver works exclusively with the Cassandra Query Language v3 (CQL3)
55
and Cassandra's native protocol. Cassandra 2.1+ is supported.
66

7-
The driver supports Python 2.7, 3.3, 3.4, 3.5, and 3.6.
7+
The driver supports Python 2.7, 3.4, 3.5, and 3.6.
88

99
This driver is open source under the
1010
`Apache v2 License <http://www.apache.org/licenses/LICENSE-2.0.html>`_.

docs/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Installation
33

44
Supported Platforms
55
-------------------
6-
Python 2.6, 2.7, 3.3, and 3.4 are supported. Both CPython (the standard Python
6+
Python 2.7, 3.4, 3.5 and 3.6 are supported. Both CPython (the standard Python
77
implementation) and `PyPy <http://pypy.org>`_ are supported and tested.
88

99
Linux, OSX, and Windows are supported.

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -429,7 +429,6 @@ def run_setup(extensions):
429429
'Operating System :: OS Independent',
430430
'Programming Language :: Python',
431431
'Programming Language :: Python :: 2.7',
432-
'Programming Language :: Python :: 3.3',
433432
'Programming Language :: Python :: 3.4',
434433
'Programming Language :: Python :: 3.5',
435434
'Programming Language :: Python :: 3.6',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{27,33,34,35,36},pypy
2+
envlist = py{27,34,35,36},pypy
33

44
[base]
55
deps = nose

0 commit comments

Comments
 (0)