From 24465e090476b65d89b9a47fc879c6d9829e8bb9 Mon Sep 17 00:00:00 2001
From: Omid <ohosseini@passcal.nmt.edu>
Date: Fri, 13 Oct 2023 14:37:34 -0600
Subject: [PATCH] Remove python 3.8 support

---
 .gitlab-ci.yml         | 6 +++---
 conda.recipe/meta.yaml | 4 ++--
 setup.py               | 1 -
 tox.ini                | 2 +-
 4 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e1bacff..113549d 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -23,7 +23,7 @@ before_script:
 - pip install -e .[dev]
 
 linting:
-  image: python:3.8
+  image: python:3.9
   tags:
   - passoft
   stage: test
@@ -31,8 +31,8 @@ linting:
   - flake8 --ignore=F403,F405,F821,F841,W504 mseedpeek
   - flake8 tests
 
-python3.8:
-  image: python:3.8
+python3.9:
+  image: python:3.9
   tags:
   - passoft
   stage: test
diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml
index dff089a..3fcee5f 100644
--- a/conda.recipe/meta.yaml
+++ b/conda.recipe/meta.yaml
@@ -11,10 +11,10 @@ build:
 
 requirements:
   host:
-    - python >=3.8
+    - python >=3.9
     - pip
   run:
-    - python >=3.8
+    - python >=3.9
     - pyside2
 
 test:
diff --git a/setup.py b/setup.py
index 55feaa3..908ab3c 100644
--- a/setup.py
+++ b/setup.py
@@ -20,7 +20,6 @@ setup(
         'Intended Audience :: Developers',
         'License :: OSI Approved ::  GNU General Public License v3 (GPLv3)',
         'Natural Language :: English',
-        'Programming Language :: Python :: 3.8',
         'Programming Language :: Python :: 3.9',
         'Programming Language :: Python :: 3.10',
     ],
diff --git a/tox.ini b/tox.ini
index bca3847..2f1ef0c 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
 [tox]
-envlist = py38, flake8
+envlist = py39, flake8
 
 [testenv:flake8]
 basepython = python
-- 
GitLab