Skip to content

PyneCore v6.3.4

Latest

Choose a tag to compare

@wallneradam wallneradam released this 19 Sep 06:25
· 8 commits to main since this release

What's Changed

Bug Fixes

  • Python 3.11 Compatibility: Fixed import error for collections.abc.Buffer which was introduced in Python 3.12
    • Added fallback to bytes type for Python versions < 3.12
    • Ensures PyneCore works correctly on Python 3.11 (minimum supported version)
    • Resolves ImportError when running on older Python versions

Technical Details

The Buffer type was added to collections.abc in Python 3.12 as part of PEP 688. This release adds a compatibility layer that:

  • Uses the native Buffer type on Python 3.12+
  • Falls back to bytes on Python 3.11
  • Maintains full functionality across all supported Python versions