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

Merge branch 'pyside6' into 'master'

Pyside6

See merge request !11
parents 0aa7d3ed 32fbd108
No related branches found
No related tags found
1 merge request!11Pyside6
...@@ -5,3 +5,23 @@ ...@@ -5,3 +5,23 @@
__pycache__ __pycache__
.DS_Store .DS_Store
# Ignore JetBrain Idea subfolder
.idea
# Ignore VS vscode subfolder
.vscode
# Distribution / packaging
bin/
build/
develop-eggs/
dist/
eggs/
lib/
lib64/
parts/
sdist/
var/
*.egg-info/
.installed.cfg
*.egg
\ No newline at end of file
...@@ -15,7 +15,7 @@ Types of Contributions ...@@ -15,7 +15,7 @@ Types of Contributions
Report Bugs Report Bugs
~~~~~~~~~~~ ~~~~~~~~~~~
Report bugs at https://git.passcal.nmt.edu/passoft/nexus/issues. Report bugs at https://git.passcal.nmt.edu/software_public/passoft/nexus/issues
If you are reporting a bug, please include: If you are reporting a bug, please include:
...@@ -61,7 +61,7 @@ Ready to contribute? Here's how to set up `nexus` for local development. ...@@ -61,7 +61,7 @@ Ready to contribute? Here's how to set up `nexus` for local development.
1. Cone the `nexus` repo:: 1. Cone the `nexus` repo::
$ git clone https://git.passcal.nmt.edu/passoft/nexus.git $ git clone https://git.passcal.nmt.edu/software_public/passoft/nexus.git
3. Install your local copy:: 3. Install your local copy::
......
package: package:
name: nexus-passoft name: nexus-passoft
version: "2022.006" version: "2022.2.0.0"
source: source:
path: ../ path: ../
...@@ -15,25 +15,25 @@ build: ...@@ -15,25 +15,25 @@ build:
requirements: requirements:
build: build:
- python >=3.6 - python >=3.7
- pip - pip
run: run:
- python >=3.6 - python >=3.7
- obspy - 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
- cartopy - cartopy
# - basemap # - basemap
# - pyside6 # - pyside6
test: # test:
imports: # imports:
- nexus.nexus # - nexus.nexus
about: about:
home: https://www.passcal.nmt.edu/content/software-resources home: https://www.passcal.nmt.edu/content/software-resources
dev_url: https://git.passcal.nmt.edu/software_public/passoft/nexus dev_url: https://git.passcal.nmt.edu/software_public/passoft/nexus.git
license: GPLv3 license: GPLv3
license_file: LICENSE license_file: LICENSE
summary: 'Create and edit FDSN StationXML seismic meta-data format.' summary: 'Create and edit FDSN StationXML seismic meta-data format.'
...@@ -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__ = '2021.204' __version__ = '2022.2.0.0'
...@@ -6,7 +6,7 @@ Channel Widget model play ...@@ -6,7 +6,7 @@ Channel Widget model play
""" """
import sys import sys
from PyQt5 import QtCore, QtGui, QtWidgets from PySide6 import QtCore, QtGui, QtWidgets
from obspy import Inventory, read_inventory from obspy import Inventory, read_inventory
......
...@@ -8,7 +8,7 @@ Lloyd Carothers ...@@ -8,7 +8,7 @@ Lloyd Carothers
import sys import sys
from PyQt5 import QtCore, QtGui, QtWidgets from PySide6 import QtCore, QtGui, QtWidgets
import obspy import obspy
class Node(object): class Node(object):
......
name: nexus name: nexus
version: 2019.219.a version: 2022.2.0.0
install_in_dependency_order: True install_in_dependency_order: True
channels: channels:
- file:///Users/lloyd/miniconda3/conda-bld
- https://conda.anaconda.org/conda-forge - https://conda.anaconda.org/conda-forge
- http://repo.anaconda.com/pkgs/main/ - http://repo.anaconda.com/pkgs/main/
......
[bumpversion] [bumpversion]
current_version = 2018.149 current_version = 2022.2.0.0
commit = True commit = True
tag = True tag = True
......
...@@ -13,8 +13,8 @@ with open('HISTORY.rst') as history_file: ...@@ -13,8 +13,8 @@ with open('HISTORY.rst') as history_file:
setup( setup(
author="Lloyd Carothers", author="IRIS PASSCAL",
author_email='lloyd@passcal.nmt.edu', author_email='software-support@passcal.nmt.edu',
classifiers=[ classifiers=[
'Development Status :: 4 - Beta', 'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research', 'Intended Audience :: Science/Research',
...@@ -30,10 +30,9 @@ setup( ...@@ -30,10 +30,9 @@ setup(
], ],
}, },
install_requires=[ install_requires=[
'obspy>=1.1.1', 'obspy>=1.3.0',
'PySide6>=6',
], ],
python_requires='>=3.6', python_requires='>=3.7',
setup_requires = [], setup_requires = [],
extras_require={ extras_require={
'dev': [ 'dev': [
...@@ -55,7 +54,7 @@ setup( ...@@ -55,7 +54,7 @@ setup(
name='nexus', name='nexus',
packages=find_packages(include=['nexus']), packages=find_packages(include=['nexus']),
test_suite='tests', test_suite='tests',
url='https://git.passcal.nmt.edu/passoft/nexus', url='https://git.passcal.nmt.edu/software_public/passoft/nexus',
version='2019.165.a', version='2022.2.0.0',
zip_safe=False, zip_safe=False,
) )
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