Skip to content
Snippets Groups Projects
Commit c68ae9ca authored by Omid Hosseini's avatar Omid Hosseini
Browse files

Remove python 3.7 support

parent f15d1e6b
No related branches found
No related tags found
1 merge request!12Remove python 3.7 support
Pipeline #2657 passed with stage
in 1 minute and 13 seconds
......@@ -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 refscrub
- 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:
......
package:
name: refscrub
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
test:
source_files:
......
......@@ -4,4 +4,4 @@
__author__ = """IRIS PASSCAL"""
__email__ = 'software-support@passcal.nmt.edu'
__version__ = '2022.1.0.0'
__version__ = '2023.2.0.0'
......@@ -28,7 +28,7 @@ import struct
import sys
from os.path import basename, getsize, isfile
PROG_VERSION = '2022.1.0.0'
PROG_VERSION = '2023.2.0.0'
VERBOSE = False
EXTRACT = False
SUMMARY_FILE = 'scrubsum.txt'
......
......@@ -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="Remove select packets from RT130 data",
......@@ -44,7 +42,7 @@ setup(
keywords='refscrub',
name='refscrub',
packages=find_packages(include=['refscrub']),
url='https://git.passcal.nmt.edu/passoft/refscrub',
version='2022.1.0.0',
url='https://git.passcal.nmt.edu/software_public/passoft/refscrub',
version='2023.2.0.0',
zip_safe=False,
)
[tox]
envlist = py36, py37, py38, flake8
envlist = py38, flake8
[testenv:flake8]
basepython = python
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment