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

Merge branch 'version_check' into 'master'

Update version number to be consistent across application

See merge request !20
parents fc6e06a6 90ebd8c5
No related branches found
No related tags found
1 merge request!20Update version number to be consistent across application
Pipeline #3668 passed with stage
in 4 minutes and 2 seconds
...@@ -46,3 +46,11 @@ python3.10: ...@@ -46,3 +46,11 @@ python3.10:
stage: test stage: test
script: script:
- python -m unittest - python -m unittest
python3.11:
image: python:3.11
tags:
- passoft
stage: test
script:
- python -m unittest
...@@ -161,7 +161,7 @@ from PySide6.QtGui import QColor, QBrush ...@@ -161,7 +161,7 @@ from PySide6.QtGui import QColor, QBrush
from mseedpeek.libtrace import * from mseedpeek.libtrace import *
from mseedpeek.mseedInfo import * from mseedpeek.mseedInfo import *
VERSION = "2023.3.1.0" VERSION = "2024.4.0.0"
def main(): def main():
......
...@@ -22,6 +22,7 @@ setup( ...@@ -22,6 +22,7 @@ setup(
'Natural Language :: English', 'Natural Language :: English',
'Programming Language :: Python :: 3.9', 'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
], ],
description="View mseed headers", description="View mseed headers",
entry_points={ entry_points={
......
[tox] [tox]
envlist = py39, py310, flake8 envlist = py39, py310, py311, flake8
[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