Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 45dcb32

Browse files
committed
removed tox python 3.3 support since thrift dependency doesn't seem to
build
1 parent cdbaf65 commit 45dcb32

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

CONTRIBUTING.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ Before you submit a pull request, check that it meets these guidelines:
9999
2. If the pull request adds functionality, the docs should be updated. Put
100100
your new functionality into a function with a docstring, and add the
101101
feature to the list in README.rst.
102-
3. The pull request should work for Python 2.6, 2.7, and 3.3, and for PyPy. Check
102+
3. The pull request should work for Python 2.6, 2.7 and for PyPy. Check
103103
https://travis-ci.org/coderfi/flask_hypertable/pull_requests
104104
and make sure that the tests pass for all supported Python versions.
105105

@@ -108,4 +108,4 @@ Tips
108108

109109
To run a subset of tests::
110110

111-
$ python -m unittest tests.test_flask_hypertable
111+
$ python -m unittest tests.test_flask_hypertable

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ or
7878
============== ==========================================================
7979
Hypertable http://hypertable.com/documentation/reference_manual/thrift_api
8080
Thrift https://thrift.apache.org/docs/
81-
Python support Python 2.7, >= 3.3
81+
Python support Python 2.7
8282
Source https://github.com/coderfi/flask-hypertable
8383
Docs http://flask-hypertable.rtfd.org
8484
Changelog http://flask-hypertable.readthedocs.org/en/latest/history.html

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,9 @@
5353
'Intended Audience :: Developers',
5454
'License :: OSI Approved :: BSD License',
5555
'Natural Language :: English',
56-
"Programming Language :: Python :: 2",
56+
'Programming Language :: Python :: 2',
5757
'Programming Language :: Python :: 2.6',
5858
'Programming Language :: Python :: 2.7',
59-
'Programming Language :: Python :: 3',
60-
'Programming Language :: Python :: 3.3',
6159
],
6260
test_suite='flask_hypertable.testsuite',
6361
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py26, py27, py33
2+
envlist = py26, py27
33

44
[testenv]
55
setenv =

0 commit comments

Comments
 (0)