Skip to content

Commit

Permalink
support Python 3.7, drop testing on 3.2, 3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
chris48s committed Nov 9, 2018
1 parent 7dc615e commit e3d855d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
dist: xenial
sudo: false
language: python
python:
- '2.7'
- '3.3'
- '3.4'
- '3.5'
- '3.6'
- '3.7'
install:
- pip install --upgrade pip
- pip install -e .[testing]
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## :package: [1.4.0](https://pypi.python.org/pypi/arcgis2geojson/1.4.0) - 2018-11-09

* Support Python 3.7, drop testing on 3.2, 3.2

## :package: [1.3.0](https://pypi.python.org/pypi/arcgis2geojson/1.3.0) - 2018-07-07

* Convert ArcGIS `Extent` to GeoJSON `Polygon`
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ def _get_description():
description='A Python library for converting ArcGIS JSON to GeoJSON',
long_description=_get_description(),
long_description_content_type="text/markdown",
version='1.3.0',
version='1.4.0',
author="chris48s",
license="MIT",
url="https://github.com/chris48s/arcgis2geojson/",
Expand All @@ -33,10 +33,9 @@ def _get_description():
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
)

0 comments on commit e3d855d

Please sign in to comment.