Skip to content

2.8.0rc2

Pre-release
Pre-release
Compare
Choose a tag to compare
@Zuzu-Typ Zuzu-Typ released this 24 Nov 14:25
8ea4408

Prerelease of the new package structure.

Important: PyGLM is now packaged as

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

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

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