Skip to content

Commit

Permalink
Give up on 3.7 support for now
Browse files Browse the repository at this point in the history
Travis CI xenial works for 3.7 but not PyPy. Oh well.
  • Loading branch information
rayrrr authored and galuszkak committed Mar 13, 2019
1 parent 8f6753d commit 63b0ce6
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 7 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
dist: xenial
language: "python"
dist: xenial
python:
Expand Down
1 change: 0 additions & 1 deletion CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ Changes

- Tie Travis CI to jazzband instance
- Remove EOL 3.3 and 3.4 version support
- Add 3.7 version support

- https://github.com/jazzband/python-geojson/pull/120

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ This library contains:
Installation
------------

python-geojson is compatible with Python 2.7, 3.5, 3.6 and 3.7. It is listed on `PyPi as 'geojson'`_. The recommended way to install is via pip_:
python-geojson is compatible with Python 2.7, 3.5, and 3.6. It is listed on `PyPi as 'geojson'`_. The recommended way to install is via pip_:

.. code::
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ def test_suite():

major_version, minor_version = sys.version_info[:2]
if not ((major_version == 2 and minor_version == 7)
or (major_version == 3 and minor_version >= 5)):
sys.stderr.write("Sorry, only Python 2.7, and 3.5 and up are supported "
or (major_version == 3 and minor_version in (5, 6))):
sys.stderr.write("Sorry, only Python 2.7, 3.5, and 3.6 are supported "
"at this time.\n")
exit(1)

Expand Down Expand Up @@ -69,7 +69,6 @@ def test_suite():
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: GIS",
]
)
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# and then run "tox" from this directory.

[tox]
envlist = py{27,35,36,37}, pypy, pypy3
envlist = py{27,35,36}, pypy

[testenv]
commands = {envpython} setup.py test

0 comments on commit 63b0ce6

Please sign in to comment.