From d4c0e249b3650d4ccba51bd7603c95eb45fdb3f7 Mon Sep 17 00:00:00 2001 From: Martijn Braam Date: Fri, 26 Nov 2021 03:26:33 +0100 Subject: [PATCH] Remove debug line and release 0.4.2 --- README.md | 4 ++-- meson.build | 2 +- pyatem/field.py | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 986c55b..8f7d26c 100644 --- a/README.md +++ b/README.md @@ -29,8 +29,8 @@ There is also the `openswitcher-install.sh` script which will install the librar External dependencies --------------------- -The only external dependency for pyatem is the python bindings for libusb. It contains a native compiled module so it -also requires a toolchain and python-dev headers at build time. +The only external dependency for pyatem is pyusb for the USB protocol support. It contains a native compiled module so +it also requires a toolchain and python-dev headers at build time. OpenSwitcher depends on the python bindings from gtk3. diff --git a/meson.build b/meson.build index 0272672..c299c87 100644 --- a/meson.build +++ b/meson.build @@ -1,5 +1,5 @@ project('switcher', - version: '0.4.1', + version: '0.4.2', meson_version: '>= 0.50.0', default_options: ['warning_level=2']) diff --git a/pyatem/field.py b/pyatem/field.py index 9eccc71..7359b49 100644 --- a/pyatem/field.py +++ b/pyatem/field.py @@ -125,7 +125,7 @@ class MediaplayerSlotsField(FieldBase): def __repr__(self): return ''.format(self.stills, self.clips) -hexdump() + class VideoModeField(FieldBase): """ diff --git a/setup.py b/setup.py index 29ec240..a43c0bd 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup, Extension setup( name='pyatem', - version='0.4.1', + version='0.4.2', packages=['pyatem'], ext_modules=[Extension('pyatem.mediaconvert', ['pyatem/mediaconvertmodule.c'])], url='https://git.sr.ht/~martijnbraam/pyatem', -- 2.34.2