Skip to content

Commit

Permalink
Finish v0.0.0a1
Browse files Browse the repository at this point in the history
  • Loading branch information
cimbi committed Nov 11, 2021
2 parents aa4783a + 88fd7f3 commit 2e4198d
Show file tree
Hide file tree
Showing 10 changed files with 994 additions and 942 deletions.
45 changes: 45 additions & 0 deletions .github/workflows/publish.yml
@@ -0,0 +1,45 @@

name: Deploy PySigView

on: [push, pull_request]

jobs:
release:
if: contains(github.ref, 'refs/tags/')

runs-on: ${{ matrix.os }}

strategy:
matrix:
include:
- os: ubuntu-latest
python-version: '3.9'

steps:

- uses: actions/checkout@v2

- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools
pip install wheel
pip install twine
- name: Build wheels
run: |
python setup.py sdist bdist_wheel
- name: Publish package
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
run: |
twine upload --skip-existing dist/pysigview*
24 changes: 0 additions & 24 deletions .travis.yml

This file was deleted.

Binary file modified icons/pysigview.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
905 changes: 169 additions & 736 deletions icons/pysigview.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
File renamed without changes.
775 changes: 775 additions & 0 deletions icons/pysigview_old.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 2 additions & 1 deletion pysigview/core/file_formats/mefd.py
Expand Up @@ -185,7 +185,8 @@ def get_data(self, data_map):
channel_map = data_map.get_active_channels()
uutc_map = data_map.get_active_uutc_ss()

data = self.session.read_ts_channels_uutc(channel_map, uutc_map)
data = self.session.read_ts_channels_uutc(channel_map, uutc_map,
out_nans=True)

data_out = np.empty(len(data_map), object)
for i in range(len(data_map)):
Expand Down
3 changes: 1 addition & 2 deletions pysigview/plugins/measurement.py
Expand Up @@ -24,15 +24,14 @@
from PyQt5.QtWidgets import (QVBoxLayout, QWidget, QComboBox, QLineEdit,
QCheckBox, QFormLayout, QHBoxLayout, QSlider)
from vispy import scene, color
from vispy.scene import Line, AxisWidget
from vispy.scene import Line, AxisWidget, Spectrogram
from vispy.visuals.transforms import STTransform

# Local imports
from pysigview.config.main import CONF

from pysigview.plugins.base import BasePluginWidget
from pysigview.cameras.signal_camera import SignalCamera
from pysigview.visuals.spectrogram_visual import Spectrogram


class SignalWidget(QWidget):
Expand Down
177 changes: 0 additions & 177 deletions pysigview/visuals/spectrogram_visual.py

This file was deleted.

4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -131,7 +131,7 @@ def run(self):
# =============================================================================

setup_args = dict(name='pysigview',
version='0.0.0b2',
version='0.0.0a1',
description='Package for viewing signals using VisPy',
url='https://github.com/ICRC-BME/PySigView',
author='Jan Cimbalnik',
Expand All @@ -140,7 +140,7 @@ def run(self):
license='Apache 2.0',
packages=get_packages(),
package_data={LIBNAME: get_package_data(LIBNAME, EXTLIST)},
platforms=['Linux', 'MacOS'],
platforms=['Linux', 'MacOS', 'Windows'],
keywords='PyQt5 vispy signal',
install_requires=['pyqt5', 'numpy', 'vispy',
'pyopengl', 'pandas', 'scipy', 'bcolz',
Expand Down

0 comments on commit 2e4198d

Please sign in to comment.