| Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search | 
| Name: python313-proto-plus | Distribution: SUSE Linux 16 | 
| Version: 1.26.1 | Vendor: SUSE LLC <https://www.suse.com/> | 
| Release: 160000.2.2 | Build date: Wed Mar 19 10:55:07 2025 | 
| Group: Unspecified | Build host: reproducible | 
| Size: 270324 | Source RPM: python-proto-plus-1.26.1-160000.2.2.src.rpm | 
| Packager: https://www.suse.com/ | |
| Url: https://github.com/googleapis/proto-plus-python | |
| Summary: Pythonic Protocol Buffers | |
This is a wrapper around protocol buffers. Protocol buffers is a specification format for APIs, such as those inside Google. This library provides protocol buffer message classes and objects that largely behave like native Python types.
Apache-2.0
* Wed Mar 19 2025 adrian.glaubitz@suse.com
  - Update to 1.26.1
    * **deps:** Allow protobuf 6.x (#536)
* Tue Feb 25 2025 dmueller@suse.com
  - update to 1.26.0:
    * Migrate to pyproject.toml
    * Construct messages with nested duration in protobuf 5.28+
    * Fix enums initialization in PyPy
    * Incorrect return type annotation for Message.to_dict
    * Use include rather than exclude to find_namespace_packages in
      setup.py
* Fri Nov 22 2024 mmachova@suse.com
  - Update to 1.25.0
    * Add support for Python 3.13
    * Construct messages with nested struct
    * Fix 'Couldn't build proto file' when using Python 3.13
    * Fix conda compatibility issue
    * Fix issue with equality comparison of repeated field with None
    * Remove check for Protobuf version
  - Drop merged pytest-staticmethod.patch
* Wed Oct 02 2024 steven.kowalik@suse.com
  - Explicitly BuildRequires on pytz, the testsuite uses it.
* Thu Jun 20 2024 dmueller@suse.com
  - update to 1.24.0:
    * Add `always_print_fields_with_no_presence` fields to
      `to_json` and `to_dict`
    * Add compatibility with protobuf==5.x
    * AttributeError module 'google._upb._message' has no attribute
      'MessageMapContainer'
    * Deprecate field `including_default_value_fields` in `to_json`
      and `to_dict`
* Mon Feb 26 2024 rjschwei@suse.com
  - Include in SLE 15 SP4 and later (jsc#PED-6697)
  - Add %{?sle15_python_module_pythons}
* Mon Jan 01 2024 dmueller@suse.com
  - update to 1.23.0:
    * Add additional parameters to `to_json()` and `to_dict()`
      methods (#384)
    * Add support for proto.__version__ (#393)
    * Add support for python 3.12 (#400)
    * Add documentation on how to query the current oneof in a
      given message (#408)
    * Add example for __protobuf__ module level attribute (#409)
* Tue Nov 07 2023 buschmann23@opensuse.org
  - Update to 1.22.3
    * Resolve issue where marshal fails with cross api dependency
      (gh#googleapis/proto-plus-python#349)
* Fri Feb 24 2023 daniel.garcia@suse.com
  - Update to 1.22.2
    * Add support for Python 3.11 (#329) (5cff3a0)
    * Fix typo in index.rst (#342) (a66a378)
* Fri Sep 09 2022 adrian.glaubitz@suse.com
  - Update to 1.22.1
    * Add no-pretty print option (#336)
  - from version 1.22.0
    * Add support for protobuf v4 (#327)
    * Fix Timestamp, Duration and FieldMask marshaling
      in REST transport (a2e7300)
    * fixes bug in the test. (#332)
  - from version 1.20.6
    * **deps:** allow protobuf < 5.0.0 (#324)
    * fix changelog header to consistent size (#319)
  - from version 1.20.5
    * **deps:** require google-api-core[grpc] >= 1.31.5 (1d13c41)
    * **deps:** require protobuf>= 3.15.0, <4.0.0dev (#315)
  - from version 1.20.4
    * default proto package name is the module name, not "" (#309)
    * lookup attribute instead of performing a deepcopy (#226)
  - Update BuildRequires and Requires from setup.py
* Mon Apr 25 2022 mcepl@suse.com
  - Update to 1.20.3:
    - additional logic to mitigate collisions with reserved terms
    - dir(proto.Message) does not raise
    - mitigate collisions in field names
    - add custom dir for messages and message classes
    - workaround for buggy pytest
  - Add pytest-staticmethod.patch which works around Pytest bug
    gh#pytest-dev/pytest#9637.
* Mon Jan 31 2022 buschmann23@opensuse.org
  - update to 0.19.9
    * add pickling support to proto messages
      (gh#googleapis/proto-plus-python#280)
  - from 0.19.8
    * fix typos
  - from 0.19.7
    * restore allowing None as value for stringy ints
      (gh#googleapis/proto-plus-python#272)
  - from 0.19.6
    * setting 64bit fields from strings supported
      (gh#googleapis/proto-plus-python#267)
  - from 0.19.5
    * Clarify semantics of multiple oneof variants passed to msg ctor
  - from 0.19.4
    * clarify that proto plus messages are not pickleable
  - from 0.19.3
    * setting bytes field from python string base64 decodes before
      assignment (gh#googleapis/proto-plus-python#265)
  - from 0.19.2
    * ensure enums are hashable (gh#googleapis/proto-plus-python#252)
  - from 0.19.1
    * ensure enums are incomparable w other enum types
      (gh#googleapis/proto-plus-python#248)
* Thu Nov 11 2021 steven.kowalik@suse.com
  - Add multibuild to defeat a build loop.
* Fri Sep 10 2021 buschmann23@opensuse.org
  - update to 1.19.0
    * pass 'including_default_value_fields' through to 'Message.to_dict'
      method (gh#googleapis/proto-plus-python#232)
* Sat Mar 20 2021 buschmann23@opensuse.org
  - update to 1.18.1
    * Add arm64 support for PY3.6 (gh#googleapis/proto-plus-python#219)
  - from 1.18.0
    * add copy_from method for field assignment
      (gh#googleapis/proto-plus-python#512)
* Mon Mar 15 2021 buschmann23@opensuse.org
  - update to 1.17.0
    * add preserving_proto_field_name to to_json (gh#googleapis/proto-plus-python#213)
  - from 1.16.0
    * add preserving_proto_field_name passthrough in MessageMeta.to_dict
      (gh#googleapis/proto-plus-python#211)
  - from 1.15.0
    * allow_alias fro enums (gh#googleapis/proto-plus-python#207)
  - from 1.14.3
    * adding enums to a repeated field does not raise a TypeError
      (gh#googleapis/proto-plus-python#202)
  - from 1.14.2
    * use the correct environment for uploading to pypi
  - from 1.14.1
    * install the wheel dependency
  - from 1.14.0
    * Features
      + Pypi publish ghub actions (gh#googleapis/proto-plus-python#189)
    * Bug Fixes
    * proper setitem and insert for RepeatedComposite
      (gh#googleapis/proto-plus-python#178)
    * proper native marshal for repeated enumeration fields
      (gh#googleapis/proto-plus-python#180)
  - from 1.13.1
    * update docstring to match type hint (gh#googleapis/proto-plus-python#172)
* Wed Jan 06 2021 buschmann23@opensuse.org
  - update to 1.13.0
    * add 3.9 support and drop 3.5
      (gh#googleapis/proto-plus-python#167)
  - from 1.12.0
    * add default values parameter to to_json
      (gh#googleapis/proto-plus-python#162)
* Tue Oct 20 2020 buschmann23@opensuse.org
  - initial package version 1.11.0
/usr/lib/python3.13/site-packages/proto /usr/lib/python3.13/site-packages/proto/__init__.py /usr/lib/python3.13/site-packages/proto/__pycache__ /usr/lib/python3.13/site-packages/proto/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/__pycache__/_file_info.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/__pycache__/_file_info.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/__pycache__/_package_info.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/__pycache__/_package_info.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/__pycache__/datetime_helpers.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/__pycache__/datetime_helpers.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/__pycache__/enums.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/__pycache__/enums.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/__pycache__/fields.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/__pycache__/fields.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/__pycache__/message.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/__pycache__/message.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/__pycache__/modules.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/__pycache__/modules.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/__pycache__/primitives.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/__pycache__/primitives.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/__pycache__/utils.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/__pycache__/utils.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/__pycache__/version.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/__pycache__/version.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/_file_info.py /usr/lib/python3.13/site-packages/proto/_package_info.py /usr/lib/python3.13/site-packages/proto/datetime_helpers.py /usr/lib/python3.13/site-packages/proto/enums.py /usr/lib/python3.13/site-packages/proto/fields.py /usr/lib/python3.13/site-packages/proto/marshal /usr/lib/python3.13/site-packages/proto/marshal/__init__.py /usr/lib/python3.13/site-packages/proto/marshal/__pycache__ /usr/lib/python3.13/site-packages/proto/marshal/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/marshal/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/marshal/__pycache__/compat.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/marshal/__pycache__/compat.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/marshal/__pycache__/marshal.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/marshal/__pycache__/marshal.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/marshal/collections /usr/lib/python3.13/site-packages/proto/marshal/collections/__init__.py /usr/lib/python3.13/site-packages/proto/marshal/collections/__pycache__ /usr/lib/python3.13/site-packages/proto/marshal/collections/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/marshal/collections/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/marshal/collections/__pycache__/maps.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/marshal/collections/__pycache__/maps.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/marshal/collections/__pycache__/repeated.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/marshal/collections/__pycache__/repeated.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/marshal/collections/maps.py /usr/lib/python3.13/site-packages/proto/marshal/collections/repeated.py /usr/lib/python3.13/site-packages/proto/marshal/compat.py /usr/lib/python3.13/site-packages/proto/marshal/marshal.py /usr/lib/python3.13/site-packages/proto/marshal/rules /usr/lib/python3.13/site-packages/proto/marshal/rules/__init__.py /usr/lib/python3.13/site-packages/proto/marshal/rules/__pycache__ /usr/lib/python3.13/site-packages/proto/marshal/rules/__pycache__/__init__.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/marshal/rules/__pycache__/__init__.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/marshal/rules/__pycache__/bytes.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/marshal/rules/__pycache__/bytes.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/marshal/rules/__pycache__/dates.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/marshal/rules/__pycache__/dates.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/marshal/rules/__pycache__/enums.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/marshal/rules/__pycache__/enums.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/marshal/rules/__pycache__/field_mask.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/marshal/rules/__pycache__/field_mask.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/marshal/rules/__pycache__/message.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/marshal/rules/__pycache__/message.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/marshal/rules/__pycache__/stringy_numbers.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/marshal/rules/__pycache__/stringy_numbers.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/marshal/rules/__pycache__/struct.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/marshal/rules/__pycache__/struct.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/marshal/rules/__pycache__/wrappers.cpython-313.opt-1.pyc /usr/lib/python3.13/site-packages/proto/marshal/rules/__pycache__/wrappers.cpython-313.pyc /usr/lib/python3.13/site-packages/proto/marshal/rules/bytes.py /usr/lib/python3.13/site-packages/proto/marshal/rules/dates.py /usr/lib/python3.13/site-packages/proto/marshal/rules/enums.py /usr/lib/python3.13/site-packages/proto/marshal/rules/field_mask.py /usr/lib/python3.13/site-packages/proto/marshal/rules/message.py /usr/lib/python3.13/site-packages/proto/marshal/rules/stringy_numbers.py /usr/lib/python3.13/site-packages/proto/marshal/rules/struct.py /usr/lib/python3.13/site-packages/proto/marshal/rules/wrappers.py /usr/lib/python3.13/site-packages/proto/message.py /usr/lib/python3.13/site-packages/proto/modules.py /usr/lib/python3.13/site-packages/proto/primitives.py /usr/lib/python3.13/site-packages/proto/utils.py /usr/lib/python3.13/site-packages/proto/version.py /usr/lib/python3.13/site-packages/proto_plus-1.26.1.dist-info /usr/lib/python3.13/site-packages/proto_plus-1.26.1.dist-info/INSTALLER /usr/lib/python3.13/site-packages/proto_plus-1.26.1.dist-info/METADATA /usr/lib/python3.13/site-packages/proto_plus-1.26.1.dist-info/RECORD /usr/lib/python3.13/site-packages/proto_plus-1.26.1.dist-info/REQUESTED /usr/lib/python3.13/site-packages/proto_plus-1.26.1.dist-info/WHEEL /usr/lib/python3.13/site-packages/proto_plus-1.26.1.dist-info/licenses /usr/lib/python3.13/site-packages/proto_plus-1.26.1.dist-info/licenses/LICENSE /usr/lib/python3.13/site-packages/proto_plus-1.26.1.dist-info/top_level.txt /usr/share/doc/packages/python313-proto-plus /usr/share/doc/packages/python313-proto-plus/README.rst /usr/share/licenses/python313-proto-plus /usr/share/licenses/python313-proto-plus/LICENSE
Generated by rpm2html 1.8.1
Fabrice Bellet, Tue Oct 28 22:33:35 2025