diff --git a/.travis.yml b/.travis.yml
index fb7148d35266b6d9e00bb68a3f27999967ce6f8e..fef41fff360dbb1b2d04087e53f5473eec94114a 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 451c3b91ca23a42b69f928bb8cc8dc216529154a..d0cab9cee4dfc0aa868817761e470a2d92cf2189 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 85ed9c859db3a40c0123e804fc28723bbaaee81a..38dc5f64145b77bddb2c32b08f8c4e6dcf86711d 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',
         ],
     )