From 9edbde573c5673e97c159a316f78d21533f8e02d Mon Sep 17 00:00:00 2001
From: Omid <ohosseini@passcal.nmt.edu>
Date: Fri, 14 Jul 2023 11:43:38 -0600
Subject: [PATCH] Remove python 3.7 support

---
 .gitlab-ci.yml           | 9 +++++++++
 data2passcal/__init__.py | 2 +-
 2 files changed, 10 insertions(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index e3e3eda..768d0c3 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -20,6 +20,15 @@ stages:
 before_script:
 - pip install -e .[dev]
 
+linting_python3:
+  image: python:3.8
+  tags:
+  - passoft
+  stage: test
+  script:
+  - flake8 --ignore=E722,E712 data2passcal
+  - flake8 --ignore=E722,E712 tests
+
 python3.8:
   image: python:3.8
   tags:
diff --git a/data2passcal/__init__.py b/data2passcal/__init__.py
index 0c5b8c4..204e7b0 100644
--- a/data2passcal/__init__.py
+++ b/data2passcal/__init__.py
@@ -4,4 +4,4 @@
 
 __author__ = """IRIS PASSCAL"""
 __email__ = 'software-support@passcal.nmt.edu'
-__version__ = '2023.2..0.0'
+__version__ = '2023.2.0.0'
-- 
GitLab