Skip to content

2.8.0rc1

Pre-release
Pre-release
Compare
Choose a tag to compare
@Zuzu-Typ Zuzu-Typ released this 19 Nov 09:02
· 3 commits to master since this release
a6f52a8

Prerelease of the new package structure.

Important: PyGLM is now packaged as

  • PyGLM (root package)
    • .glm (library)
    • .glm_typing (typing stubs)
  • glm (for backwards compatibility)

Please test this new package structure with your projects and give me feedback in the discussion for this release.

pip install --pre pyglm

Update your import to this for compatibility with old and future versions:

try:
    from PyGLM import glm
except ImportError:
    import glm

What's Changed

New Contributors

Full Changelog: 2.7.3...2.8.0rc1