Skip to content
Snippets Groups Projects
Commit 7fb78dc8 authored by Omid Hosseini's avatar Omid Hosseini Committed by Maeva Pourpoint
Browse files

Remove python 3.7 support

parent 623d614b
No related branches found
No related tags found
1 merge request!10Remove python 3.7 support
......@@ -20,17 +20,8 @@ stages:
before_script:
- pip install -e .[dev]
linting_python2:
image: python:2.7
tags:
- passoft
stage: test
script:
- flake8 --ignore=E722,E712 data2passcal
- flake8 --ignore=E722,E712 tests
linting_python3:
image: python:3.6
image: python:3.8
tags:
- passoft
stage: test
......@@ -38,47 +29,6 @@ linting_python3:
- flake8 --ignore=E722,E712 data2passcal
- flake8 --ignore=E722,E712 tests
python2.7:
image: python:2.7
tags:
- passoft
stage: test
script:
- cd tests/
- pwd
- ls
- python -m unittest test_data2passcal
python3.5:
image: python:3.5
tags:
- passoft
stage: test
script:
- pwd
- ls
- python -m unittest
python3.6:
image: python:3.6
tags:
- passoft
stage: test
script:
- pwd
- ls
- python -m unittest
python3.7:
image: python:3.7
tags:
- passoft
stage: test
script:
- pwd
- ls
- python -m unittest
python3.8:
image: python:3.8
tags:
......
package:
name: data2passcal
version: 2022.1.0.0
version: 2023.2.0.0
source:
path: ../
......@@ -11,10 +11,10 @@ build:
requirements:
build:
- python >=2.7
- python >=3.8
- pip
run:
- python >=2.7
- python >=3.8
test:
requires:
......
......@@ -4,4 +4,4 @@
__author__ = """IRIS PASSCAL"""
__email__ = 'software-support@passcal.nmt.edu'
__version__ = '2022.1.0.0'
__version__ = '2023.2.0.0'
......@@ -34,7 +34,7 @@ try:
except ImportError:
from urllib2 import urlopen
VERSION = '2022.1.0.0'
VERSION = '2023.2.0.0'
# FTP related
......
......@@ -20,10 +20,6 @@ setup(
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
description="Prepare SEED data for shipment to PASSCAL.",
......@@ -47,7 +43,7 @@ setup(
keywords='data2passcal',
name='data2passcal',
packages=find_packages(include=['data2passcal']),
url='https://git.passcal.nmt.edu/passoft/data2passcal',
version='2022.1.0.0',
url='https://git.passcal.nmt.edu/software_public/passoft/data2passcal',
version='2023.2.0.0',
zip_safe=False,
)
......@@ -16,7 +16,7 @@ if sys.version_info < (3, 3):
else:
from unittest.mock import patch
VERSION = '2022.1.0.0'
VERSION = '2023.2.0.0'
SEND4REAL = os.environ.get('SEND4REAL', 'False')
print("SEND4REAL=False by default. If one wants to test sending data to "
......
[tox]
envlist = py27, py35, 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