2.8.0rc1
Pre-release
Pre-release
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
- Make array generic. by @esoma in #172
- Updated glm submodule to latest master by @Zuzu-Typ in #250
- Fix compiler warnings by @Zuzu-Typ in #251
- Add quat_to_vec4 (and vice-versa) documentation by @Zuzu-Typ in #252
- Updated PyGLM packaging structure by @Zuzu-Typ in #203
- Added visual studio project by @Zuzu-Typ in #254
- Adjusted project structure by @Zuzu-Typ in #255
- Updated Readme and manifest by @Zuzu-Typ in #256
- Fixed readme by @Zuzu-Typ in #257
- Test on push only by @Zuzu-Typ in #258
- Slightly improved readme by @Zuzu-Typ in #259
- Bump Version (2.8.0rc1) by @Zuzu-Typ in #262
New Contributors
Full Changelog: 2.7.3...2.8.0rc1