summaryrefslogtreecommitdiffstats
path: root/meta-python
Commit message (Collapse)AuthorAgeFilesLines
* python3-absl: Update version 1.4.0 -> 2.0.0Derek Straka2023-09-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog ================== New Support Python 3.12. Changed absl-py no longer supports Python 3.6. It has reached end-of-life for more than a year now. (logging) logging.exception can now take exc_info as argument, with default value True. Prior to this change setting exc_info would raise KeyError, this change fixes this behaviour. (testing) For Python 3.11+, the calls to absltest.TestCase.enter_context are forwarded to unittest.TestCase.enterContext (when called via instance) or unittest.TestCase.enterClassContext (when called via class) now. As a result, on Python 3.11+, the private _cls_exit_stack attribute is not defined on absltest.TestCase and _exit_stack attribute is not defined on its instances. (testing) absltest.TestCase.assertSameStructure() now uses the test case's equality functions (registered with TestCase.addTypeEqualityFunc()) for comparing leaves of the structure. (testing) abslTest.TestCase.fail() now names its arguments (self, msg=None, user_msg=None), and not (self, msg=None, prefix=None), better reflecting the behavior and usage of the two message arguments. DEFINE_enum, DEFINE_multi_enum, and EnumParser now raise errors when enum_values is provided as a single string value. Additionally, EnumParser.enum_values is now stored as a list copy of the provided enum_values parameter. (testing) Updated paramaterized.CoopTestCase() to use Python 3 metaclass idioms. Most uses of this function continued working during the Python 3 migration still worked because a Python 2 compatibility __metaclass__ variables also existed. Now pure Python 3 base classes without backwards compatibility will work as intended. (testing) absltest.TestCase.assertSequenceStartsWith now explicitly fail when passed a Mapping or Set object as the whole argument. Signed-off-by: Derek Straka <derek@asterius.io> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-zeroconf: upgrade 0.97.0 -> 0.112.0Wang Mingyu2023-09-201-1/+1
| | | | | | | | | | | | | | | | | | | | | | | Changelog: ============ Improve AsyncServiceBrowser performance (#1273) (0c88ecf) Speed up question and answer internals (#1272) (d24722b) Small speed ups to ServiceBrowser (#1271) (22c433d) Speed up ServiceBrowsers with a cython pxd (#1270) (4837876) Improve performance of constructing outgoing queries (#1267) (00c439a) Speed up responding to queries (#1266) (24a0a00) Speed up answering questions (#1265) (37bfaf2) Speed up ServiceInfo with a cython pxd (#1264) (7ca690a) Speed up generating answers (#1262) (50a8f06) Avoid calling get_running_loop when resolving ServiceInfo (#1261) (33a2714) Significantly speed up writing outgoing dns records (#1260) (bf2f366) Speed up writing outgoing dns records (#1259) (248655f) Small speed up to writing outgoing dns records (#1258) (1ed6bd2) Reduce IP Address parsing overhead in ServiceInfo (#1257) (83d0b7f) Speed up decoding incoming packets (#1256) (ac081cf) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-xlsxwriter: upgrade 3.1.2 -> 3.1.3Wang Mingyu2023-09-201-1/+1
| | | | | | | | Changelog: Added support for custom total formulas to worksheet tables. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-virtualenv: upgrade 20.24.4 -> 20.24.5Wang Mingyu2023-09-201-1/+1
| | | | | | | | | | | | | Changelog: ========== -release 20.24.4 -Fix brew cannot copy -Test with 3.12 rc -Upgrade setuptools -GitHub Actions: Add PyPy 3.10 to testing Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-types-setuptools: upgrade 68.1.0.1 -> 68.2.0.0Wang Mingyu2023-09-201-1/+1
| | | | | | | | | | | | | | | | Changelog: =========== -1 public Python file has been added: setuptools/tests/test_core_metadata.py. -0 files included in typeshed's stubs have been deleted. -7 files included in typeshed's stubs have been modified or renamed: setuptools/__init__.py, setuptools/command/editable_wheel.py, setuptools/command/egg_info.py, setuptools/depends.py, setuptools/dist.py, setuptools/monkey.py, setuptools/namespaces.py. -Total lines of Python code added: 1051. -Total lines of Python code deleted: 682. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-typeguard: upgrade 4.1.3 -> 4.1.5Wang Mingyu2023-09-201-1/+1
| | | | | | | | | | | | | | | | | | | | | Changelog: ========= -Fixed Callable erroneously rejecting a callable that has the requested amount of positional arguments but they have defaults -Fixed a regression introduced in v4.1.4 where the elements of Literal got quotes removed from them by the AST transformer -Fixed AttributeError where the transformer removed elements from a PEP 604 union -Fixed AttributeError: 'Subscript' object has no attribute 'slice' when encountering an annotation with a subscript containing an ignored type (imported within an if TYPE_CHECKING: block) -Fixed type checking not being skipped when the target is a union (PEP 604 or typing.Union) where one of the elements is an ignored type (shadowed by an argument, variable assignment or an if TYPE_CHECKING import) (#394, #395) -Fixed type checking of class instances created in __new__() in cases such as enums where this method is already invoked before the class has finished initializing Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-tox: upgrade 4.11.1 -> 4.11.3Wang Mingyu2023-09-201-1/+1
| | | | | | | | | | Changelog: =========== docs(plugin): explain plugin registration Fix error caused by a bad base_python path Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-term: upgrade 2.4 -> 2.5Wang Mingyu2023-09-201-1/+1
| | | | | | | | | | | | | Changelog: ============= Update tox.ini for latest tox. Add .readthedocs.yaml file. Pin sphinx and sphinx-rtd-theme versions in docs extra. Add pylint extra which installs pylint. Update .pylintrc for latest pylint. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rich: upgrade 13.5.2 -> 13.5.3Wang Mingyu2023-09-201-1/+1
| | | | | | | | | | Changelog: =========== Markdown table rendering issue with inline styles and links Fix Markdown code blocks on a light background Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-rapidjson: upgrade 1.10 -> 1.11Wang Mingyu2023-09-201-1/+1
| | | | | | | | | | Changelog: ========== Use current master version of rapidjson Use cibuildwheel 2.15.0 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pymodbus: upgrade 3.5.0 -> 3.5.2Wang Mingyu2023-09-201-1/+1
| | | | | | | | | | | | | | | | | | | Changelog: =========== server tracer example. sync connect missing. simulator future problem. Always close socket on error (reset_sock). Revert reset_socket change. add close_comm_on_error to example. Test long term (HomeAsistant problem). Update ruff to 0.0.287 (#1764) Remove references to ModbusSerialServer.start Readd test to get 100% coverage. transport: Don't raise a RunTimeError in ModbusProtocol.error_received() Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pymisp: upgrade 2.4.175 -> 2.4.176Wang Mingyu2023-09-201-1/+1
| | | | | | | | | | | | Changelog: ========= - Avoid exception when data is an empty iterator. - Revert "build(deps): bump codecov/codecov-action from 3 to 4" - Build(deps): bump codecov/codecov-action from 3 to 4. - Build(deps): bump actions/checkout from 3 to 4. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pillow: upgrade 10.0.0 -> 10.0.1Wang Mingyu2023-09-201-2/+2
| | | | | | | | | | Changelog: =========== Updated libwebp to 1.3.2 #7395 Updated zlib to 1.3 #7344 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-google-auth: upgrade 2.22.0 -> 2.23.0Wang Mingyu2023-09-201-1/+1
| | | | | | | | | | | | | | | | | | | Changelog: ========== Features --------- Add get_bq_config_path() to _cloud_sdk.py (9f52f66) Add get_bq_config_path() to _cloud_sdk.py (#1358) (9f52f66) Bug Fixes ---------- Expose universe domain in credentials (#1380) (8b8fce6) Make external_account resistant to string type 'expires_in' responses from non-compliant services (#1379) (01d3770) Missing ssj for impersonate cred (#1377) (7d453dc) Skip checking projectid on cred if env var is set (#1349) (a4135a3) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-google-api-python-client: upgrade 2.97.0 -> 2.99.0Wang Mingyu2023-09-201-1/+1
| | | | | | | | Changelog: https://github.com/googleapis/google-api-python-client/releases/tag/v2.99.0 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask-socketio: upgrade 5.3.5 -> 5.3.6Wang Mingyu2023-09-201-1/+1
| | | | | | | | Changelog: Fixes in the test client to support recent changes in Socket.IO dependencies Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask-migrate: upgrade 4.0.4 -> 4.0.5Wang Mingyu2023-09-201-1/+1
| | | | | | | | | | | Changelog: ========== -Compatiblity fixes for Flask-SQLAlchemy >= 3.1 -Allow process_revision_directives option to be configurable -Stop testing Python 3.7, as Flask-SQLAlchemy 3.1 stopped supporting it Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-eth-utils: upgrade 2.2.0 -> 2.2.1Wang Mingyu2023-09-201-1/+1
| | | | | | | | Changelog: Add build.os config for readthedocs Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-engineio: upgrade 4.7.0 -> 4.7.1Wang Mingyu2023-09-201-1/+1
| | | | | | | | | | | | Changelog: ============ -Replace gevent-websocket with simple-websocket when using gevent -Catch and log all errors that occur in event handlers -Use daemon threads for background tasks also in the threaded client -Silence exception on websocket exit when using uWSGI #330 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-coverage: upgrade 7.3.0 -> 7.3.1Wang Mingyu2023-09-201-1/+1
| | | | | | | | | | | | | Changelog: =========== -The semantics of stars in file patterns has been clarified in the docs. A leading or trailing star matches any number of path components, like a double star would. This is different than the behavior of a star in the middle of a pattern. -The API docs were missing from the last version. They are now restored. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-cmake: upgrade 3.27.4.1 -> 3.27.5Wang Mingyu2023-09-201-1/+1
| | | | | | | | | | | | | | Changelog: ========== chore(deps): bump cmake from 3.27.2 to 3.27.4.1 chore(deps): bump actions/checkout from 3 to 4 chore(deps): update pre-commit hooks chore(deps): bump docker/setup-qemu-action from 2.2.0 to 3.0.0 chore(deps): update pre-commit hooks Update to CMake 3.27.5 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-bitstring: upgrade 4.1.1 -> 4.1.2Wang Mingyu2023-09-201-1/+1
| | | | | | | | | | | | | | | | Changelog: ========== - Fix for the module command-line usage. Bug #290. - Fix for when creating bitstrings from memoryview objects. - Renamed the 'fmt' parameter for Arrays to 'dtype'. - More Array operator coverage. - Added operators that act on two Arrays of the same size. - Added comparison operators for Arrays that return an Array of bools. - Added Array.equals method as == will now return an Array (see above item). - Added astype() method for Arrays to easily cast to a new dtype. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-argcomplete: upgrade 3.1.1 -> 3.1.2Wang Mingyu2023-09-201-1/+1
| | | | | | | | Changelog: Ensure Python 3.12+ compatibility in check_console_script (#448) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pyfanotify: upgrade 0.2.0 -> 0.2.1Wang Mingyu2023-09-202-5/+5
| | | | | | | | | | | | | | 0001-ext-define-FNM_EXTMATCH-if-not-already-defined.patch refreshed for 0.2.1 Changelog: ========== add installing clang package for readthedocks atexit fix fix file system events: store fs info when marked Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-lazy: upgrade 1.5 -> 1.6Wang Mingyu2023-09-201-2/+2
| | | | | | | | | | | | | | | | | Changelog: =========== Implement lazy.__set_name__() which helps in cases like foo=lazy(_foo). Update tox.ini for latest tox. Add GitHub CI workflow. Add .readthedocs.yaml file. Pin sphinx and sphinx-rtd-theme versions in docs extra. Add mypy extra which installs mypy. Fix stray characters in keywords. License-Update: Copyright year updated to 2023. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-antlr4-runtime: upgrade 4.13.0 -> 4.13.1Wang Mingyu2023-09-201-2/+2
| | | | | | | | | | | | | | | | | | | | | Changelog: =========== - change signatures for ReportAttemptingFullContext() and ReportContextSensitivity() to be identical to all other targets - Move GetText(), SetText(), and String() from CommonToken to BaseToken - Restore "Obtained from string" source name. - fix: Fix very minor code issues spotted by goreportcard.com - Java: suppress this-escape warning introduced in JDK 21. - Adds default targets for babel configuration - fix dependabot warnings - Add Antlr4Dynamic product - Cleanup duplicate SwiftTarget code - Fix for #4320--export additional types License-Update: Version updated to 4.13.1 Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-aiofiles: upgrade 23.1.0 -> 23.2.1Trevor Gamblin2023-09-161-2/+2
| | | | | | | | | | | The new version requires hatchling to build, so add that and remove poetry (which isn't actually needed). Note that the changelog says it switched to PDM from poetry. Changelog: https://github.com/Tinche/aiofiles#history Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-apiflask: add recipeSam Van Den Berge2023-09-151-0/+18
| | | | | Signed-off-by: Sam Van Den Berge <sam.van.den.berge@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-webargs: add recipeSam Van Den Berge2023-09-151-0/+13
| | | | | Signed-off-by: Sam Van Den Berge <sam.van.den.berge@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask-httpauth: add recipeSam Van Den Berge2023-09-151-0/+14
| | | | | Signed-off-by: Sam Van Den Berge <sam.van.den.berge@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-apispec: add recipeSam Van Den Berge2023-09-151-0/+10
| | | | | Signed-off-by: Sam Van Den Berge <sam.van.den.berge@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask-marshmallow: add recipeSam Van Den Berge2023-09-151-0/+14
| | | | | Signed-off-by: Sam Van Den Berge <sam.van.den.berge@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-shellingham: add recipe for v1.5.3Richard Leitner2023-09-141-0/+10
| | | | | | | | | | Shellingham is a python library to detect what shell the current Python executable is running in. This recipe uses pypi as source: https://pypi.org/project/shellingham Signed-off-by: Richard Leitner <dev@g0hl1n.net> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-flask-jwt-extended: add recipeSam Van Den Berge2023-09-141-0/+16
| | | | | Signed-off-by: Sam Van Den Berge <sam.van.den.berge@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-appdirs: print ptest results in unified formatArchana Polampalli2023-09-121-1/+1
| | | | | | | | Update run-ptest script to print the output of python3-appdirs ptest results in unified format Signed-off-by: Archana Polampalli <archana.polampalli@windriver.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* layer.conf: update LAYERSERIES_COMPAT for nanbieldMartin Jansa2023-09-101-1/+1
| | | | | | | | * oe-core switched to nanbield in: https://git.openembedded.org/openembedded-core/commit/?id=f212cb12a0db9c9de5afd3cc89b1331d386e55f6 Signed-off-by: Martin Jansa <martin.jansa@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-zeroconf: upgrade 0.82.1 -> 0.97.0Wang Mingyu2023-09-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== Speed up answering queries (#1255) (2d3aed3) Optimize DNSCache.get_by_details (#1254) (ce59787) Speed up adding and removing RecordUpdateListeners (#1253) (22e4a29) Optimize cache implementation (#1252) (8d3ec79) No change re-release due to unrecoverable failed CI run (#1251) (730921b) Reduce overhead to answer questions (#1250) (7cb8da0) Cache construction of records used to answer queries from the service registry (#1243) (0890f62) Remove useless calls in ServiceInfo (#1248) (4e40fae) Reduce overhead to process incoming updates by avoiding the handle_response shim (#1247) (5e31f0a) Avoid python float conversion in listener hot path (#1245) (816ad4d) Reduce overhead to process incoming questions (#1244) (18b65d1) Speed up RecordManager with additional cython defs (#1242) (5a76fc5) Improve performance by adding cython pxd for RecordManager (#1241) (a7dad3d) Build wheels for cpython 3.12 (#1239) (58bc154) Use server_key when processing DNSService records (#1238) (cc8feb1) Simplify code to unpack properties (#1237) (68d9998) Context managers in ServiceBrowser and AsyncServiceBrowser (#1233) (bd8d846) Rebuild wheels with cython 3.0.2 (#1236) (dd637fb) Speed up question and answer history with a cython pxd (#1234) (703ecb2) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-web3: upgrade 6.8.0 -> 6.9.0Wang Mingyu2023-09-071-1/+1
| | | | | Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-virtualenv: upgrade 20.24.3 -> 20.24.4Wang Mingyu2023-09-071-1/+1
| | | | | | | | | | Changelog: =========== Fix typo found by codespell Updating extend.rst typo Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-types-setuptools: upgrade 68.1.0.0 -> 68.1.0.1Wang Mingyu2023-09-071-1/+1
| | | | | | | | Changelog: setuptools: add various missing objects and annotations Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-typeguard: upgrade 4.1.2 -> 4.1.3Wang Mingyu2023-09-071-1/+1
| | | | | | | | | | | | | | Changelog: ============ -Dropped Python 3.7 support -Fixed @typechecked optimization causing compilation of instrumented code to fail when any block was left empty by the AST transformer (eg if or try / except blocks) (#352) -Fixed placement of injected typeguard imports with respect to __future__ imports and module docstrings (#385) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-tox: upgrade 4.10.0 -> 4.11.1Wang Mingyu2023-09-071-1/+1
| | | | | | | | | | Changelog: ========== Allow passing in multiple overrides using the ; character and fix , being used as splitting values Add support for setting build backend config_settings in the configuration file Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-soupsieve: upgrade 2.4.1 -> 2.5Wang Mingyu2023-09-071-1/+1
| | | | | | | | | | Changelog: ========== NEW: Update to support Python 3.12. NEW: Drop support for Python 3.7. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-socketio: upgrade 5.8.0 -> 5.9.0Wang Mingyu2023-09-071-1/+1
| | | | | | | | | | | | | | | | | Changelog: =========== Optimized performance and memory usage for broadcasts Improved documentation on horizontal scaling Corrected user session documentation example Improved grammar in documentation Fix docstring typo: client/server mixup Fix typos in the documentation Upgrade dependencies in Django server example Update reference JavaScript examples Upgrade to pypy-3.9 in unit tests Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-snagboot: upgrade 1.1 -> 1.2Wang Mingyu2023-09-071-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | Changelog: ========== i.MX: Add i.MX8QM to SDPV SoCs snagflash/DFU: Add dfu-keep, dfu-detach and dfu-reset snagflash/UMS: various fixes, document creation of static block device paths AM335x: Fix issue where SPL output is confused with UART pings Catch spurious errors Fix race condition between BOOTP and TFTP servers Add progress bar for UART recovery Fix case conversion issue with firmware binary paths AM335x setup script: Improve robustness of SUDOER username detection Add custom shell prompt Fix issue where stdout is broken after exiting from recovery shell Silence spurious errors Document AM62Ax platforms and test AM62A7 device install: Fix issue where old builds confuse installation script pyproject: Change version-fetching method to avoid implicit setuptools dependency snagrecover/DFU: Catch spurious error on DFU_DETACH Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-smbus2: upgrade 0.4.2 -> 0.4.3Wang Mingyu2023-09-071-1/+1
| | | | | | | | | | | Changelog; =========== - Build pipeline and test updates only: - Update deprecated Sphinx config format. - Corrected deprecated assertEquals in the unit tests. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pymodbus: upgrade 3.4.1 -> 3.5.0Wang Mingyu2023-09-071-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | License-Update: Remove Copyright from LICENSE: xdist loadscope (test is not split). (#1708) Changelog: ============ Async retry (#1752) test_client: Fix test_client_protocol_execute() (#1751) Use enums for constants (#1743) Local Echo Broadcast with Async Clients (#1744) Fix #1746 . Return missing result (#1748) Document nullmodem. (#1739) Add system health check to all tests. (#1736) Handle partial message in ReadDeviceInformationResponse (#1738) Broadcast with Handle Local Echo (#1737) transport_emulator, part II. (#1710) Added file AUTHORS, to list all Volunteers. (#1734) Fix #1702 and #1728 (#1733) Clear retry count when success. (#1732) RFC: Reduce parameters for REPL server classes (#1714) retries=1, solved. (#1731) Impoved the example "server_updating.py" (#1720) pylint 3.11 (#1730) Correct retry loop. (#1729) Fix faulty not check (#1725) bugfix local echo handling on sync clients (#1723) Updated copyright in LICENSE. Correct README pre-commit. Fix custom message parsing in RTU framer (#1716) Request tracer (#1715) pymodbus.server: allow strings for "-p" paramter (#1713) New nullmodem and transport. (#1696) xdist loadscope (test is not split). (#1708) Add client performance example. (#1707) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-pymisp: upgrade 2.4.174 -> 2.4.175Wang Mingyu2023-09-071-1/+1
| | | | | | | | | | Changelog: ============ - Update Sharing group info from full object. - Changes in msg-extract strip a character. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-protobuf: upgrade 4.24.1 -> 4.24.2Wang Mingyu2023-09-071-1/+1
| | | | | | | | Changelog: Fixes for 32-bit MSVC. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
* python3-luma-core: upgrade 2.4.0 -> 2.4.1Wang Mingyu2023-09-071-2/+2
| | | | | | | | | | Changelog: Adjust type check License-Update: Copyright year updated to 2023. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>