diff --git a/.travis.yml b/.travis.yml index fb7148d35..fef41fff3 100644 --- a/.travis.yml +++ b/.travis.yml @@ -14,6 +14,8 @@ env: - PYTHON_VERSION=3.6 HAS_GDAL=false - PYTHON_VERSION=3.7 HAS_GDAL=true - PYTHON_VERSION=3.7 HAS_GDAL=false + - PYTHON_VERSION=3.8 HAS_GDAL=true + - PYTHON_VERSION=3.8 HAS_GDAL=false before_install: # We do this conditionally because it saves us some downloading if the # version is the same. diff --git a/appveyor.yml b/appveyor.yml index 451c3b91c..d0cab9cee 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -9,11 +9,12 @@ platform: environment: matrix: - - PYTHON: "C:\\Miniconda36-x64\\Scripts\\activate.bat" + - PYTHON: "C:\\Miniconda3-x64\\Scripts\\activate.bat" PYTHON_VERSION: 3.6 - - PYTHON: "C:\\Miniconda37-x64\\Scripts\\activate.bat" + - PYTHON: "C:\\Miniconda3-x64\\Scripts\\activate.bat" PYTHON_VERSION: 3.7 - + - PYTHON: "C:\\Miniconda3-x64\\Scripts\\activate.bat" + PYTHON_VERSION: 3.8 configuration: - Release diff --git a/setup.py b/setup.py index 85ed9c859..38dc5f641 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ def setup_package(): setup( name = "plio", - version = '1.2.2', + version = '1.2.4', author = "Jay Laura", author_email = "jlaura@usgs.gov", description = ("I/O API to support planetary data formats."), @@ -39,11 +39,9 @@ def setup_package(): "Development Status :: 3 - Alpha", "Topic :: Utilities", "License :: Public Domain", - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3', - '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', + 'Programming Language :: Python :: 3.8', ], )