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

Merge branch 'feature-remove_python_37' into 'master'

Remove python 3.7 support

See merge request !18
parents 72dae322 c429b7de
No related branches found
No related tags found
1 merge request!18Remove python 3.7 support
package: package:
name: nexus-passoft name: nexus-passoft
version: "2022.2.1.0" version: "2023.3.0.0"
source: source:
path: ../ path: ../
...@@ -15,11 +15,11 @@ build: ...@@ -15,11 +15,11 @@ build:
requirements: requirements:
build: build:
- python >=3.7 - python >=3.8
- pip - pip
run: run:
- python >=3.7 - python >=3.8
- obspy >=1.3.0 - obspy >=1.3.0
# needs basemap or cartopy. Cartopy has heavy deps like hdf4 and 5, so basemap for now. # needs basemap or cartopy. Cartopy has heavy deps like hdf4 and 5, so basemap for now.
# err, basemap is getting more depricated, try cartopy # err, basemap is getting more depricated, try cartopy
......
...@@ -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.2.1.0' __version__ = '2023.3.0.0'
name: nexus name: nexus
version: 2022.2.1.0 version: 2023.3.0.0
install_in_dependency_order: True install_in_dependency_order: True
......
[bumpversion] [bumpversion]
current_version = 2022.2.1.0 current_version = 2023.3.0.0
commit = True commit = True
tag = True tag = True
......
...@@ -20,7 +20,7 @@ setup( ...@@ -20,7 +20,7 @@ setup(
'Intended Audience :: Science/Research', 'Intended Audience :: Science/Research',
'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', 'Programming Language :: Python :: 3.8',
], ],
description="StationXML creation GUI", description="StationXML creation GUI",
entry_points={ entry_points={
...@@ -33,7 +33,7 @@ setup( ...@@ -33,7 +33,7 @@ setup(
'obspy>=1.3.0', 'obspy>=1.3.0',
'pyside2', 'pyside2',
], ],
python_requires='>=3.7', python_requires='>=3.8',
setup_requires = [], setup_requires = [],
extras_require={ extras_require={
'dev': [ 'dev': [
...@@ -57,6 +57,6 @@ setup( ...@@ -57,6 +57,6 @@ setup(
packages=find_packages(include=['nexus']), packages=find_packages(include=['nexus']),
test_suite='tests', test_suite='tests',
url='https://git.passcal.nmt.edu/software_public/passoft/nexus', url='https://git.passcal.nmt.edu/software_public/passoft/nexus',
version='2022.2.1.0', version='2023.3.0.0',
zip_safe=False, zip_safe=False,
) )
[tox] [tox]
envlist = py27, py36 flake8 envlist = py38, flake8
[travis] [travis]
python = python =
2.7: py27 3.8: py38
3.6: py36
[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