Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python311-tomlkit-0.12.1-150400.10.3.1 RPM for noarch

From OpenSuSE Leap 15.6 for noarch

Name: python311-tomlkit Distribution: SUSE Linux Enterprise 15
Version: 0.12.1 Vendor: SUSE LLC <https://www.suse.com/>
Release: 150400.10.3.1 Build date: Wed Oct 25 11:19:44 2023
Group: Unspecified Build host: h04-ch1d
Size: 445838 Source RPM: python-tomlkit-0.12.1-150400.10.3.1.src.rpm
Packager: https://www.suse.com/
Url: https://github.com/sdispater/tomlkit
Summary: Style preserving TOML library
Style preserving TOML library

Provides

Requires

License

MIT

Changelog

* Thu Sep 07 2023 dmueller@suse.com
  - update to 0.12.1:
    * Make float and int hashable.
    * Allow users to specify encoders for custom types. (#296)
    * Fix the incorrect sort when building a table with dotted
      keys.
    * Complete the methods required for integer and float items.
    * Replace the deprecated usage of `datetime.utcnow()`. (#308)
    * Minor performance improvements when iterating over the escape
      sequences. (#304)
* Sun May 14 2023 dmueller@suse.com
  - update to 0.11.8:
    * Remove the extra indentations added when parsing nested sub-
      tables.
    * Ignore the CRLF immediately following a multiple basic string
      opening.
    * Stringifying subtables and nested tables in arrays of tables.
    * Messed table structure when building a table with dotted
      keys.
* Tue Apr 25 2023 mcepl@suse.com
  - add sle15_python_module_pythons (jsc#PED-68)
* Tue Apr 18 2023 mcepl@suse.com
  - Don't add dependency on full poetry, when poetry-core is enough.
* Sun Apr 16 2023 dmueller@suse.com
  - update to 0.11.7:
    * Parse empty table name if it is quoted. (#258)
    * Fix a bug that remove last element of an Inline Table leaves
      a comma. (#259)
    * Parse datetime when it is followed by a space. (#260)
    * Fix the `unwrap()` method for `Container` children values
      which sometimes returns an internal object if the table is an
      out-of-order table. (#264)
    * Fix the wrong return type when doing arithmetic operations
      between integers and floats. (#270)
* Wed Nov 09 2022 yarunachalam@suse.com
  - Update to 0.11.6
    Fixed
    * Allow broader type for toml file path value (#243)
    * Auto-determine if a table is a super table if not specified explicitly. (#245)
* Mon Oct 03 2022 dmueller@suse.com
  - update to 0.11.5:
    * Fix the type annotation of `unwrap()` and datetime parsing.
    * Clear the existing table header when it is adding to another table.
    * Fix a bug that escape chars are lost after concat with another string.
    * Fix a rendering issue of tables inside arrays or inline tables.
* Sat Sep 24 2022 dmueller@suse.com
  - update to 0.11.4:
    * Fix a memory leak caused by `lru_cache` on methods.
    * Fix a regression issue that copying an array results in extra `None` items.
    * Fix a regression of `array.add_line` that it incorrectly adds a comma to
      non-value lines.
    * Fix adding float to an integer value.
    * Keep the end-of-array style when adding items to or removing items from an array.
    * Fix a bug of redundant table header shown when removing children from a
      super table.
* Wed Jul 13 2022 code@bnavigator.de
  - Update to version 0.11.1
    * Keep consistent line endings when changing files. (#201)
    * Make KeyAlreadyPresent and InvalidStringError subclasses of
      ParseError. (#202)
    * Remove empty table from OutOfOrderTableProxy when deleting
      items. (#204)
    * Raise errors when trying to access unsupported methods on
      OutOfOrderTableProxy. (#205)
    * Fix unwrap() for String values to remove the quotes. (#199)
  - Release 0.11.0
    * Add unwrap method to recursive convert to plain old python
      objects by @syntapy in #187
    * Remove the is_tomlkit check by @frostming in #195
  - Release 0.10.2
    * Use the plain python string representation of Key in
      KeyAlreadyPresent error message. (#185)
    * Fix the astimezone() and replace() methods of datetime objects.
      (#188)
    * Add type definitions for items() function. (#190)
  - Release 0.10.1
    * Preserve the newlines before super tables when rendering.
      (#178)
    * Fix the bug that comments are appended with comma when
      rendering a multiline array. (#181)
  - Release 0.10.0
    * Fix the only child detection when creating tables. (#175)
    * Include the docs/ directory and CHANGELOG.md in sdist tarball.
      (#176)
    * Add keyword arguments to string API to allow selecting the
      representation type. (#177)
  - Release 0.9.2
    * When a table's only child is a table or array of table, it is
      created as a super table. (#175)
  - Release 0.9.1
    * Fix a bug of separators not being kept when replacing the
      value. (#170)
    * Tuples should be dumped as TOML arrays. (#171)
  - Release 0.9.0
    * Add an argument to allow table to be super table by @frostming
      in #159
    * Support adding item with dotted key by @frostming in #162
    * Initialize Sphinx docs by @frostming in #163
    * Fix values similar to booleans being incorrectly parsed to
      booleans by @MrGreenTea in #168
* Thu Jan 20 2022 mcepl@suse.com
  - Update to version 0.8.0:
    - Drop support for Python<3.6.
    - Comply with TOML v1.0.0.
    - And many bug fixes
* Mon Oct 05 2020 code@bnavigator.de
  - Update to version 0.7.0
    * Added support for sorting keys when dumping raw
      dictionaries by passing sort_keys=True to dumps() (#103).
    * Keys are not longer sorted by default when dumping a raw
      dictionary but the original order will be preserved (#103).
    * Fixed compliance with the 1.0.0rc1 TOML specification (#102).
* Thu Jul 23 2020 mcalabkova@suse.com
  - update to version 0.6.0
    * Added support for heterogeneous arrays
* Thu Mar 12 2020 tchvatal@suse.com
  - Fix build without python2
* Wed Mar 11 2020 pgajdos@suse.com
  - version update to 0.5.11
    * Fix containers and our of order tables dictionary behavior (#82))
    * Fixed out of order tables not behaving properly (#79)
    * Fixed the behavior for out of order tables (#68).
    * Fixed parsing errors when single quotes are present in a table name (#71).
    * Fixed parsing errors when parsing some table names (#76).
* Thu Nov 28 2019 mcepl@suse.com
  - Update to 0.5.8:
    - Added support for producing multiline arrays
* Tue Oct 08 2019 tchvatal@suse.com
  - Update to 0.5.7:
    * Fixed handling of inline tables.
    * Fixed boolean comparison.
    * Fixed appending inline tables to tables.
* Mon Jul 22 2019 tchvatal@suse.com
  - Update to 0.5.5:
    * Fixed display of inline tables after element deletion.
    * Fixed the handling of inline tables.
    * Fixed date, datetime and time handling on Python 3.8.
    * Fixed behavior for sub table declaration with intermediate tables.
    * Fixed behavior of setdefault() on containers (Thanks to @AndyKluger).
    * Fixed tables string representation.
* Fri Mar 01 2019 jayvdb@gmail.com
  - Initial spec for v0.5.3

Files

/usr/lib/python3.11/site-packages/tomlkit
/usr/lib/python3.11/site-packages/tomlkit-0.12.1.dist-info
/usr/lib/python3.11/site-packages/tomlkit-0.12.1.dist-info/INSTALLER
/usr/lib/python3.11/site-packages/tomlkit-0.12.1.dist-info/LICENSE
/usr/lib/python3.11/site-packages/tomlkit-0.12.1.dist-info/METADATA
/usr/lib/python3.11/site-packages/tomlkit-0.12.1.dist-info/RECORD
/usr/lib/python3.11/site-packages/tomlkit-0.12.1.dist-info/REQUESTED
/usr/lib/python3.11/site-packages/tomlkit-0.12.1.dist-info/WHEEL
/usr/lib/python3.11/site-packages/tomlkit/__init__.py
/usr/lib/python3.11/site-packages/tomlkit/__pycache__
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/__init__.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/__init__.cpython-311.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/_compat.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/_compat.cpython-311.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/_types.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/_types.cpython-311.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/_utils.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/_utils.cpython-311.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/api.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/api.cpython-311.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/container.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/container.cpython-311.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/exceptions.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/exceptions.cpython-311.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/items.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/items.cpython-311.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/parser.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/parser.cpython-311.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/source.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/source.cpython-311.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/toml_char.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/toml_char.cpython-311.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/toml_document.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/toml_document.cpython-311.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/toml_file.cpython-311.opt-1.pyc
/usr/lib/python3.11/site-packages/tomlkit/__pycache__/toml_file.cpython-311.pyc
/usr/lib/python3.11/site-packages/tomlkit/_compat.py
/usr/lib/python3.11/site-packages/tomlkit/_types.py
/usr/lib/python3.11/site-packages/tomlkit/_utils.py
/usr/lib/python3.11/site-packages/tomlkit/api.py
/usr/lib/python3.11/site-packages/tomlkit/container.py
/usr/lib/python3.11/site-packages/tomlkit/exceptions.py
/usr/lib/python3.11/site-packages/tomlkit/items.py
/usr/lib/python3.11/site-packages/tomlkit/parser.py
/usr/lib/python3.11/site-packages/tomlkit/py.typed
/usr/lib/python3.11/site-packages/tomlkit/source.py
/usr/lib/python3.11/site-packages/tomlkit/toml_char.py
/usr/lib/python3.11/site-packages/tomlkit/toml_document.py
/usr/lib/python3.11/site-packages/tomlkit/toml_file.py
/usr/share/doc/packages/python311-tomlkit
/usr/share/doc/packages/python311-tomlkit/README.md
/usr/share/licenses/python311-tomlkit
/usr/share/licenses/python311-tomlkit/LICENSE


Generated by rpm2html 1.8.1

Fabrice Bellet, Fri May 3 23:33:27 2024