Skip to content
Snippets Groups Projects
Commit e80d19c6 authored by Omid Hosseini's avatar Omid Hosseini
Browse files

Fix the structure of the project and update the software version

parent 31f3f472
No related branches found
No related tags found
1 merge request!15ckMseed to PySide2
Pipeline #1974 failed with stage
in 1 minute and 31 seconds
......@@ -26,3 +26,9 @@ History
* Created conda packages for ckMseed that can run on Python3.[6,7,8]
* Updated .gitlab-ci.yml to run a linter and unit tests for Python3.[6,7,8]
in GitLab CI pipeline
2022.2.0.0 (2022-11-17)
-----------------------
* The GUI layout is now using pyside2.
* This version is not back compatible.
* The support for python 3.6, 3.7, and 3.8 has been dropped.
......@@ -4,4 +4,4 @@
__author__ = """IRIS PASSCAL"""
__email__ = 'software-support@passcal.nmt.edu'
__version__ = '2022.1.0.0'
__version__ = '2022.2.0.0'
This diff is collapsed.
This diff is collapsed.
package:
name: ckmseed
version: 2022.1.0.0
version: 2022.2.0.0
source:
path: ../
......@@ -11,11 +11,12 @@ build:
requirements:
build:
- python >=3.6
- python >=3.9
- pip
run:
- python >=3.6
- pmw
- python >=3.9
- playsound
- pyside2
test:
source_files:
......
......@@ -20,9 +20,8 @@ setup(
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
description="Find and review MSEED files.",
entry_points={
......@@ -30,12 +29,14 @@ setup(
'ckmseed=ckMseed.ckMseed:main',
],
},
install_requires=['Pmw @ https://github.com/schrodinger/pmw-patched/archive/master.tar.gz'],
# install_requires=['Pmw @ https://github.com/schrodinger/pmw-patched/archive/master.tar.gz'],
setup_requires=[],
extras_require={
'dev': [
'flake8',
'tox',
'pyside2',
'playsound',
]
},
license="GNU General Public License v3",
......
[tox]
envlist = py36, py37, py38, flake8
envlist = py39, py310, 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