From 0b2d9ec00e6c50776f0de3e7ae5723288c4f8453 Mon Sep 17 00:00:00 2001 From: Omid <ohosseini@passcal.nmt.edu> Date: Thu, 20 Jul 2023 13:50:15 -0600 Subject: [PATCH] Remove python 3.7 support --- .gitlab-ci.yml | 18 +----------------- conda.recipe/meta.yaml | 2 +- mseedpeek/__init__.py | 2 +- mseedpeek/libtrace.py | 4 ++-- mseedpeek/mseedpeek.py | 2 +- setup.py | 4 ++-- tox.ini | 2 +- 7 files changed, 9 insertions(+), 25 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 57dce3e..e1bacff 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,7 +23,7 @@ before_script: - pip install -e .[dev] linting: - image: python:3.6 + image: python:3.8 tags: - passoft stage: test @@ -31,22 +31,6 @@ linting: - flake8 --ignore=F403,F405,F821,F841,W504 mseedpeek - 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 40ab1da..dff089a 100644 --- a/conda.recipe/meta.yaml +++ b/conda.recipe/meta.yaml @@ -1,6 +1,6 @@ package: name: mseedpeek - version: 2022.2.0.0 + version: 2023.3.0.0 source: path: ../ diff --git a/mseedpeek/__init__.py b/mseedpeek/__init__.py index ded7e1b..6727213 100644 --- a/mseedpeek/__init__.py +++ b/mseedpeek/__init__.py @@ -4,4 +4,4 @@ __author__ = """IRIS PASSCAL""" __email__ = 'software-support@passcal.nmt.edu' -__version__ = '2022.2.0.0' +__version__ = '2023.3.0.0' diff --git a/mseedpeek/libtrace.py b/mseedpeek/libtrace.py index 4a7f924..6c431ee 100755 --- a/mseedpeek/libtrace.py +++ b/mseedpeek/libtrace.py @@ -125,7 +125,7 @@ import time SPACE = " " -# VERSION = "2008.204" +# VERSION = "2023.3.0.0" class futils: @@ -1674,7 +1674,7 @@ class Segy(futils): ######################################################### if __name__ == "__main__": - VERSION = "2008.204" + VERSION = "2023.3.0.0" filecnt = 0 # based on traverse routine in "python standard library", Lundh pg 34 diff --git a/mseedpeek/mseedpeek.py b/mseedpeek/mseedpeek.py index 732e39a..ab77ac9 100644 --- a/mseedpeek/mseedpeek.py +++ b/mseedpeek/mseedpeek.py @@ -143,7 +143,7 @@ from PySide2 import QtCore, QtGui, QtWidgets from mseedpeek.libtrace import * from mseedpeek.mseedInfo import * -VERSION = "2022.2.0.0" +VERSION = "2023.3.0.0" def main(): diff --git a/setup.py b/setup.py index f8bfd07..55feaa3 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ setup( keywords='mseedpeek', name='mseedpeek', packages=find_packages(include=['mseedpeek']), - url='https://git.passcal.nmt.edu/passoft/mseedpeek', - version='2022.2.0.0', + url='https://git.passcal.nmt.edu/software_public/passoft/mseedpeek', + version='2023.3.0.0', zip_safe=False, ) diff --git a/tox.ini b/tox.ini index 980627c..bca3847 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