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: ...@@ -21,7 +21,7 @@ before_script:
- pip install -e .[dev] - pip install -e .[dev]
linting: linting:
image: python:3.6 image: python:3.8
tags: tags:
- passoft - passoft
stage: test stage: test
...@@ -29,22 +29,6 @@ linting: ...@@ -29,22 +29,6 @@ linting:
- flake8 refscrub - flake8 refscrub
- flake8 tests - 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: python3.8:
image: python:3.8 image: python:3.8
tags: tags:
......
package: package:
name: refscrub name: refscrub
version: 2022.1.0.0 version: 2023.2.0.0
source: source:
path: ../ path: ../
...@@ -11,10 +11,10 @@ build: ...@@ -11,10 +11,10 @@ build:
requirements: requirements:
build: build:
- python >=3.6 - python >=3.8
- pip - pip
run: run:
- python >=3.6 - python >=3.8
test: test:
source_files: source_files:
......
...@@ -4,4 +4,4 @@ ...@@ -4,4 +4,4 @@
__author__ = """IRIS PASSCAL""" __author__ = """IRIS PASSCAL"""
__email__ = 'software-support@passcal.nmt.edu' __email__ = 'software-support@passcal.nmt.edu'
__version__ = '2022.1.0.0' __version__ = '2023.2.0.0'
...@@ -28,7 +28,7 @@ import struct ...@@ -28,7 +28,7 @@ import struct
import sys import sys
from os.path import basename, getsize, isfile from os.path import basename, getsize, isfile
PROG_VERSION = '2022.1.0.0' PROG_VERSION = '2023.2.0.0'
VERBOSE = False VERBOSE = False
EXTRACT = False EXTRACT = False
SUMMARY_FILE = 'scrubsum.txt' SUMMARY_FILE = 'scrubsum.txt'
......
...@@ -20,8 +20,6 @@ setup( ...@@ -20,8 +20,6 @@ setup(
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English', 'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.8',
], ],
description="Remove select packets from RT130 data", description="Remove select packets from RT130 data",
...@@ -44,7 +42,7 @@ setup( ...@@ -44,7 +42,7 @@ setup(
keywords='refscrub', keywords='refscrub',
name='refscrub', name='refscrub',
packages=find_packages(include=['refscrub']), packages=find_packages(include=['refscrub']),
url='https://git.passcal.nmt.edu/passoft/refscrub', url='https://git.passcal.nmt.edu/software_public/passoft/refscrub',
version='2022.1.0.0', version='2023.2.0.0',
zip_safe=False, zip_safe=False,
) )
[tox] [tox]
envlist = py36, py37, py38, flake8 envlist = py38, flake8
[testenv:flake8] [testenv:flake8]
basepython = python 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