Skip to content

Releases: Phynix/yamlloader

Python 3.14 support

10 Nov 15:33

Choose a tag to compare

What's Changed

  • Add Python 3.14 support

Full Changelog: 1.5.2...1.6.0

Add missing pyyaml dependency

05 Aug 13:22
fda0325

Choose a tag to compare

What's Changed

  • deps: add PyYaml module as runtime requirement by @dutyrok in #60

New Contributors

Full Changelog: 1.5.1...1.5.2

Python 3.13 (fixed minversion)

01 Jan 17:30

Choose a tag to compare

Python 3.13 is now supported. Using hatch as build system.

(fixes 1.5.0 which didn't have the minimum Python version of 3.7 specified)

Python 3.13 support

20 Dec 21:54
c581840

Choose a tag to compare

Python 3.13 is now supported. Using hatch as build system.

Python 3.12

15 Apr 05:18
2d0032a

Choose a tag to compare

What's Changed

New Contributors

  • @mdm made their first contribution in #52

Full Changelog: 1.3.2...1.4.0

Upgrade to Python 3.11

02 Aug 12:46
b0936f0

Choose a tag to compare

Python 3.11 upgrade, drop 3.7 (use old version < 1.3 if desired in Python 3.7)

Stable LTS release

03 Mar 21:56

Choose a tag to compare

Release 1.0.0

First stable release.

Main change is that it returns always an OrderedDict, even for Python >= 3.7 for consistency (see also #17)

Python 3.7 ordering preserved

28 Jul 16:24

Choose a tag to compare

Changelog

As of Python version 3.7, the insertion order in dict is preserved by design. This is accounted for by allowing to dump and load to/from ordinary dictionaries in the same way as you do for OrderedDicts

Improved C version handling

08 Feb 14:49

Choose a tag to compare

Small release containing improved C version handling of PyYAML Loaders and Dumpers

Changelog:

  • the C version automatically fall back to the non-C version in case the CLoaders and CDumpers from PyYAML could not be loaded. This behavior can be changed by setting ALLOW_C_VERSION_FALLBACK in yamlloader.settings to False. This will cause the code to fail if the C version is not available.

Stable first release

26 Jan 20:09

Choose a tag to compare

First stable release.

Changelog (compared to yamlordereddictloader):

  • added C-versions for Loaders and Dumpers.
  • stochastic and static unit testing with CI
  • conda version
  • dropped python 2.6 support
  • internal cleanup