From 1c9156b092681afe6a639320e9734e3ec038fcb4 Mon Sep 17 00:00:00 2001 From: Max Date: Wed, 22 Mar 2023 16:49:39 +0100 Subject: [PATCH] prepare release 1.1 - add scope functions --- README.md | 2 +- docs/conf.py | 2 +- pyLSV2/__init__.py | 2 +- pyLSV2/locales/de/LC_MESSAGES/error_text.po | 4 ++-- pyLSV2/locales/de/LC_MESSAGES/message_text.po | 4 ++-- pyLSV2/locales/en/LC_MESSAGES/error_text.po | 8 ++++---- pyLSV2/locales/en/LC_MESSAGES/message_text.po | 4 ++-- setup.py | 5 ++--- 8 files changed, 15 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index 52d9b5b..6a12bcf 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ ## License MIT License - Copyright (c) 2020 - 2022 drunsinn + Copyright (c) 2020 - 2023 drunsinn Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/docs/conf.py b/docs/conf.py index 4062074..8b5e351 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -19,7 +19,7 @@ # -- Project information ----------------------------------------------------- project = "pyLSV2" -copyright = "2021, drunsinn" +copyright = "2023, drunsinn" author = "drunsinn" # The full version, including alpha/beta/rc tags diff --git a/pyLSV2/__init__.py b/pyLSV2/__init__.py index 3630c3b..05e5949 100644 --- a/pyLSV2/__init__.py +++ b/pyLSV2/__init__.py @@ -8,7 +8,7 @@ from .translate_messages import * from .err import * -__version__ = "1.0.1" +__version__ = "1.1.0" __author__ = "drunsinn" __license__ = "MIT" __email__ = "dr.unsinn@googlemail.com" diff --git a/pyLSV2/locales/de/LC_MESSAGES/error_text.po b/pyLSV2/locales/de/LC_MESSAGES/error_text.po index b59cffc..131456b 100644 --- a/pyLSV2/locales/de/LC_MESSAGES/error_text.po +++ b/pyLSV2/locales/de/LC_MESSAGES/error_text.po @@ -1,7 +1,7 @@ # pyLSV2 error text translation file. -# Copyright (C) 2021 +# Copyright (C) 2023 # This file is distributed under the same MIT license as pyLSV2 package. -# drunsinn , 2021. +# drunsinn , 2023. # #, fuzzy msgid "" diff --git a/pyLSV2/locales/de/LC_MESSAGES/message_text.po b/pyLSV2/locales/de/LC_MESSAGES/message_text.po index 8187e5e..183c0d7 100644 --- a/pyLSV2/locales/de/LC_MESSAGES/message_text.po +++ b/pyLSV2/locales/de/LC_MESSAGES/message_text.po @@ -1,7 +1,7 @@ # pyLSV2 message text translation file. -# Copyright (C) 2021 +# Copyright (C) 2023 # This file is distributed under the same MIT license as pyLSV2 package. -# drunsinn , 2021. +# drunsinn , 2023. # #, fuzzy msgid "" diff --git a/pyLSV2/locales/en/LC_MESSAGES/error_text.po b/pyLSV2/locales/en/LC_MESSAGES/error_text.po index 75a99f9..a90004e 100644 --- a/pyLSV2/locales/en/LC_MESSAGES/error_text.po +++ b/pyLSV2/locales/en/LC_MESSAGES/error_text.po @@ -1,15 +1,15 @@ # pyLSV2 error text translation file. -# Copyright (C) 2021 +# Copyright (C) 2023 # This file is distributed under the same MIT license as pyLSV2 package. -# drunsinn , 2021. +# drunsinn , 2023. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: 0.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2021-01-26 19:44+0100\n" -"PO-Revision-Date: 2021-01-26 19:44+0100\n" +"POT-Creation-Date: 2023-01-26 19:44+0100\n" +"PO-Revision-Date: 2023-01-26 19:44+0100\n" "Last-Translator: dr.unsinn@googlemail.com\n" "Language-Team: English dr.unsinn@googlemail.com\n" "Language: English\n" diff --git a/pyLSV2/locales/en/LC_MESSAGES/message_text.po b/pyLSV2/locales/en/LC_MESSAGES/message_text.po index b5be56f..0ace4f1 100644 --- a/pyLSV2/locales/en/LC_MESSAGES/message_text.po +++ b/pyLSV2/locales/en/LC_MESSAGES/message_text.po @@ -1,7 +1,7 @@ # pyLSV2 message text translation file. -# Copyright (C) 2021 +# Copyright (C) 2023 # This file is distributed under the same MIT license as pyLSV2 package. -# drunsinn , 2021. +# drunsinn , 2023. # #, fuzzy msgid "" diff --git a/setup.py b/setup.py index 78e78e5..20d464d 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name="pyLSV2", - python_requires=">=3.4", + python_requires=">=3.5", packages=find_packages( include=[ "pyLSV2", @@ -24,11 +24,10 @@ url="https://github.com/drunsinn/pyLSV2", license=__license__, install_requires=[], - scripts=["scripts/lsv2cmd.py", "scripts/tab2csv.py"], + scripts=["scripts/lsv2cmd.py", "scripts/tab2csv.py", "scripts/scope2csv.py"], keywords="LSV2 cnc communication transfer plc", classifiers=[ "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7",