From 5ff7705da0947105c5caf4fdf3428d3287b28d5b Mon Sep 17 00:00:00 2001
From: Omid <ohosseini@passcal.nmt.edu>
Date: Thu, 13 Jul 2023 10:41:03 -0600
Subject: [PATCH] Remove python 3.7 support

---
 .gitlab-ci.yml         | 18 +-----------------
 conda.recipe/meta.yaml |  6 +++---
 fixhdr/__init__.py     |  2 +-
 fixhdr/fixhdr.py       |  2 +-
 setup.py               |  6 ++----
 tox.ini                |  2 +-
 6 files changed, 9 insertions(+), 27 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 7979b81..8a575da 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -21,7 +21,7 @@ before_script:
 - pip install -e .[dev]
 
 linting:
-  image: python:3.6
+  image: python:3.8
   tags:
   - passoft
   stage: test
@@ -29,22 +29,6 @@ linting:
   - flake8 --ignore=F403,F405,F821,F841,W504 fixhdr
   - flake8 tests
 
-python3.6:
-  image: python:3.6
-  tags:
-  - passoft
-  stage: test
-  script:
-  - python -m unittest
-
-python3.7:
-  image: python:3.7
-  tags:
-  - passoft
-  stage: test
-  script:
-  - python -m unittest
-
 python3.8:
   image: python:3.8
   tags:
diff --git a/conda.recipe/meta.yaml b/conda.recipe/meta.yaml
index 1359ff4..1afbb72 100644
--- a/conda.recipe/meta.yaml
+++ b/conda.recipe/meta.yaml
@@ -1,6 +1,6 @@
 package:
   name: fixhdr
-  version: 2022.1.0.0
+  version: 2023.2.0.0
 
 source:
   path: ../
@@ -11,10 +11,10 @@ build:
 
 requirements:
   build:
-    - python >=3.6
+    - python >=3.8
     - pip
   run:
-    - python >=3.6
+    - python >=3.8
     - pmw
 
 test:
diff --git a/fixhdr/__init__.py b/fixhdr/__init__.py
index 639e390..bd45b4b 100644
--- a/fixhdr/__init__.py
+++ b/fixhdr/__init__.py
@@ -4,4 +4,4 @@
 
 __author__ = """IRIS PASSCAL"""
 __email__ = 'software-support@passcal.nmt.edu'
-__version__ = '2022.1.0.0'
+__version__ = '2023.2.0.0'
diff --git a/fixhdr/fixhdr.py b/fixhdr/fixhdr.py
index 0e7f268..2a4ce7f 100755
--- a/fixhdr/fixhdr.py
+++ b/fixhdr/fixhdr.py
@@ -299,7 +299,7 @@ from tkinter.filedialog import *
 
 from fixhdr.LibTrace import *
 
-VERSION = "2022.1.0.0"
+VERSION = "2023.2.0.0"
 
 SPACE = " "
 DATALOC = ""
diff --git a/setup.py b/setup.py
index e34169c..58abe07 100644
--- a/setup.py
+++ b/setup.py
@@ -20,8 +20,6 @@ setup(
         'Intended Audience :: Developers',
         'License :: OSI Approved ::  GNU General Public License v3 (GPLv3)',
         'Natural Language :: English',
-        'Programming Language :: Python :: 3.6',
-        'Programming Language :: Python :: 3.7',
         'Programming Language :: Python :: 3.8',
     ],
     description="Modifies mseed headers",
@@ -44,7 +42,7 @@ setup(
     keywords='fixhdr',
     name='fixhdr',
     packages=find_packages(include=['fixhdr']),
-    url='https://git.passcal.nmt.edu/passoft/fixhdr',
-    version='2022.1.0.0',
+    url='https://git.passcal.nmt.edu/software_public/passoft/fixhdr',
+    version='2023.2.0.0',
     zip_safe=False,
 )
diff --git a/tox.ini b/tox.ini
index 8ad663c..cf67bd5 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
 [tox]
-envlist = py36, py37, py38, flake8
+envlist = py38, flake8
 
 [testenv:flake8]
 basepython = python
-- 
GitLab