Skip to content
Snippets Groups Projects
Commit 5cb39ac0 authored by Maeva Pourpoint's avatar Maeva Pourpoint
Browse files

Conda packages for Python 3.[5,6,7,8]

parent b4d6022e
No related branches found
No related tags found
1 merge request!5Conda packaging
Pipeline #691 failed
......@@ -15,22 +15,46 @@ cache:
- .cache/pip
stages:
- static analysis
- test
before_script:
- pip install -e .[dev]
flake8:
image: python:3.6
tags: passoft
stage: static analysis
script:
- flake8 --ignore=E722,E712,E501 data2passcal
- flake8 --ignore=E722,E712,E501 tests
python2:
python2.7:
image: python:2.7
tags:
- passoft
tags: passoft
stage: test
script: tox -e py27
python3:
python3.5:
image: python:3.5
tags: passoft
stage: test
script: tox -e py35
python3.6:
image: python:3.6
tags:
- passoft
tags: passoft
stage: test
script: tox -e py36
python3.7:
image: python:3.7
tags: passoft
stage: test
script: tox -e py37
python3.8:
image: python:3.8
tags: passoft
stage: test
script: tox -e py38
......@@ -40,3 +40,9 @@ History
- run "conda install ./data2passcal-2020.114-py*_0.tar.bz2"
(choose appropriate python version for your platform)
- run "conda update data2passcal"
2020.119 (2020-04-28)
------------------
* Created conda packages for "data2passcal" that can run on Python3.[5,7,8]
* Tested data2passcal against Python3.[5,7,8] using tox
* Updated .gitlab-ci.yml to run a linter and unit tests for Python2 and Python3.[5,6,7,8] in GitLab CI pipeline
"%PYTHON%" setup.py install --single-version-externally-managed --record=record.txt
if errorlevel 1 exit 1
$PYTHON setup.py install --single-version-externally-managed --record=record.txt
python:
- 2.7
- 3.5
- 3.6
- 3.7
- 3.8
target_platform: osx-64
package:
name: data2passcal
version: 2020.114
version: 2020.119
source:
path: ../
build:
number: 0
script: python setup.py install --single-version-externally-managed --record=record.txt
entry_points:
- data2passcal = data2passcal.data2passcal:main
......
......@@ -4,4 +4,4 @@
__author__ = """IRIS PASSCAL"""
__email__ = 'software-support@passcal.nmt.edu'
__version__ = '2020.114'
__version__ = '2020.119'
......@@ -18,7 +18,7 @@ import struct
import sys
from time import sleep, time
VERSION = '2020.114'
VERSION = '2020.119'
# Cache the ftplib.FTP class so it will be available to test_FTP(FTP) when calling isinstance assert
......
[bumpversion]
current_version = 2020.114
current_version = 2020.119
commit = True
tag = True
......
......@@ -21,7 +21,10 @@ setup(
'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.",
entry_points={
......@@ -33,15 +36,8 @@ setup(
setup_requires=[],
extras_require={
'dev': [
'pip',
'bumpversion',
'wheel',
'watchdog',
'flake8',
'tox',
'coverage',
'Sphinx',
'twine',
"mock;python_version<'3.3'"
]
},
......@@ -52,6 +48,6 @@ setup(
name='data2passcal',
packages=find_packages(include=['data2passcal']),
url='https://git.passcal.nmt.edu/passoft/data2passcal',
version='2020.114',
version='2020.119',
zip_safe=False,
)
......@@ -10,22 +10,20 @@ import os
import unittest
from data2passcal.data2passcal import get_FTP, ismseed, scan_dir, send2passcal
from data2passcal.data2passcal import FTP_CONNECT_ATTEMPTS, FTP_SEND_ATTEMPTS
try:
from unittest.mock import patch
except ImportError:
from mock import patch
VERSION = '2020.114'
VERSION = '2020.119'
FTP_HOST = 'qc.passcal.nmt.edu'
FTP_USER = 'ftp'
FTP_PASSWORD = 'data2passcal'
FTP_DIR = 'AUTO/MSEED'
FTP_TIMEOUT = 120
FTP_RECONNECT_WAIT = 60
FTP_CONNECT_ATTEMPTS = 60 * 60 * 24 * 7 / FTP_RECONNECT_WAIT
FTP_SEND_ATTEMPTS = 3
MOCK_TEST = True
......
[tox]
envlist = py27, py36, flake8
envlist = py27, py35, py36, py37, py38, flake8
[travis]
python =
2.7: py27
3.5: py35
3.6: py36
3.7: py37
3.8: py38
[testenv:flake8]
basepython = python
......@@ -17,5 +20,5 @@ changedir = tests
deps = mock
commands = python -m unittest test_data2passcal
[testenv:py36]
[testenv]
commands = python -m unittest
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