Skip to content

Commit bcb5dd3

Browse files
authored
Merge pull request jazzband#87 from thetwoj/master
Indicate support for Python 3.5
2 parents 94410f3 + 95c7772 commit bcb5dd3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This library contains:
2121
Installation
2222
------------
2323

24-
python-geojson is compatible with Python 2.6, 2.7, 3.2, 3.3, and 3.4. It is listed on `PyPi as 'geojson'`_. The recommended way to install is via pip_:
24+
python-geojson is compatible with Python 2.6, 2.7, 3.2, 3.3, 3.4 and 3.5. It is listed on `PyPi as 'geojson'`_. The recommended way to install is via pip_:
2525

2626
.. code::
2727

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ def test_suite():
2828
suite.addTest(doctest.DocFileSuite("README.rst"))
2929
return suite
3030

31+
3132
if sys.version_info[:2] not in [(2, 6), (2, 7)] and \
3233
sys.version_info[:1] not in [(3, )]:
3334
sys.stderr.write("Sorry, only Python 2.7, and 3.x are supported "
@@ -68,6 +69,7 @@ def test_suite():
6869
"Programming Language :: Python :: 3.2",
6970
"Programming Language :: Python :: 3.3",
7071
"Programming Language :: Python :: 3.4",
72+
"Programming Language :: Python :: 3.5",
7173
"Topic :: Scientific/Engineering :: GIS",
7274
]
7375
)

0 commit comments

Comments
 (0)