From e68b9888208c5fb64e11202359fa28cd478f71aa Mon Sep 17 00:00:00 2001
From: jlaura <jlaura@usgs.gov>
Date: Thu, 16 Jul 2020 11:05:47 -0700
Subject: [PATCH] Prepping for 1.2.4 release (#149)

* Prepping for 1.2.4 release

* Update appveyor.yml

* Update appveyor.yml
---
 .travis.yml  |  2 ++
 appveyor.yml |  7 ++++---
 setup.py     | 10 ++++------
 3 files changed, 10 insertions(+), 9 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index fb7148d..fef41ff 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 451c3b9..d0cab9c 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 85ed9c8..38dc5f6 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ with open('README.md', 'r') as f:
 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',
         ],
     )
 
-- 
GitLab