Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update pyglet requirement from <2 to <3 #1

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 20, 2024

Updates the requirements on pyglet to permit the latest version.

Release notes

Sourced from pyglet's releases.

v2.0.15

Changes and Improvements

  • font: Clean up win32 legacy font renderer to remove unused or outdated code.
  • font: Boxes are now primary update method for TextLayout instead of relying on the vertex_list of the TextLayout.
  • font: More typing additions.
  • gui.widgets: Add _set_enabled hook (#1073)
  • shapes: Add missing BezierCurve thickness property.
  • graphics: Re-raise error for attributes during shader creation with better error descriptions. (#1076)
  • docs: Start adding GUI section to the programming guide.
  • typing: Add stub file for init package to workaround IDE inspection/completion issues with lazy loading modules. (#1077)
  • examples: Add more visual feedback to the Controller example

Bugfixes

  • Xaudio2: Fix missing ) to POINTER which causes XAudio2 to fail to be imported. (#1068)
  • font.caret: Fix caret positioning and moving the cursor during cursor selection. (#932)
  • input.controller: User added mappings should take higher priority over default mappings.
  • input.controller: Properly handle inverted axis as dpad (#1078)
  • shapes: Added a None check to ShapeBase.delete (#1075)
  • shapes: Fix Line being off-centered when setting thickness #1083
  • image: Fix BufferManager.get_depth_buffer() for GL3+.
Changelog

Sourced from pyglet's changelog.

pyglet 2.0.16

Changes and Improvements

  • library-wide overhaul of docstrings, and addition of type hints (#1084)

Bugfixes

  • resource: Fix indexing of directories inside of Zip files. Remove broken code for multi-part archives.

pyglet 2.0.15

Changes and Improvements

  • font: Clean up win32 legacy font renderer to remove unused or outdated code.
  • font: Boxes are now primary update method for TextLayout instead of relying on the vertex_list of the TextLayout.
  • font: More typing additions.
  • gui.widgets: Add _set_enabled hook (#1073)
  • shapes: Add missing BezierCurve thickness property.
  • graphics: Re-raise error for attributes during shader creation with better error descriptions. (#1076)
  • docs: Start adding GUI section to the programming guide.
  • typing: Add stub file for init package to workaround IDE inspection/completion issues with lazy loading modules. (#1077)
  • examples: Add more visual feedback to the Controller example

Bugfixes

  • Xaudio2: Fix missing ) to POINTER which causes XAudio2 to fail to be imported. (#1068)
  • font.caret: Fix caret positioning and moving the cursor during cursor selection. (#932)
  • input.controller: User added mappings should take higher priority over default mappings.
  • input.controller: Properly handle inverted axis as dpad (#1078)
  • shapes: Added a None check to ShapeBase.delete (#1075)
  • shapes: Fix Line being off-centered when setting thickness #1083
  • image: Fix BufferManager.get_depth_buffer() for GL3+.

pyglet 2.0.14

Changes and Improvements

  • shapes: Add new MultiLine shape. (#1057)
  • font: Enhance UserDefinedFonts to allow using custom font mapping functions (#1067)
  • typing: Improve Xaudio2 COM type hints (#1062)
  • text: Raise Exception when attempting to change IncrementalTextLayout.rotation, as it's not supported.
  • tests.integration: Add simple sanity tests for creation of all Label, Document, and Layout objects.

Bugfixes

  • input.win32: Fix broken xinput get_devices and get_controllers methods (#1060)
  • shapes: Fix incorrect BezierCurve positioning, and Line rotation. (#1084)

... (truncated)

Commits
  • da24128 ready v2.0.15 release
  • 0a8192d input.controller: Properly handle inverted axis as dpad (#1078)
  • bcb9a10 shapes: fix Line being off-centered when setting thickness #1083
  • 8e67905 examples.depth_sprite: Remove accidental debug code.
  • 6e4050a examples: add more visual feedback to the Controller example
  • a9186de docs: Flesh out Framebuffer docstrings.
  • e08c536 docs: Minor refactoring of Framebuffer docs.
  • a353da1 image: fix BufferManager.get_depth_buffer() for GL3+.
  • 4dbce54 Revert "image: fix BufferManager.get_depth_buffer() for GL3+."
  • e606cb6 image: fix BufferManager.get_depth_buffer() for GL3+.
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels May 20, 2024
Updates the requirements on [pyglet](https://github.com/pyglet/pyglet) to permit the latest version.
- [Release notes](https://github.com/pyglet/pyglet/releases)
- [Changelog](https://github.com/pyglet/pyglet/blob/master/RELEASE_NOTES)
- [Commits](pyglet/pyglet@v1.3.3...v2.0.15)

---
updated-dependencies:
- dependency-name: pyglet
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/pyglet-lt-3 branch from 92a8ccb to 36a9ba1 Compare May 20, 2024 05:57
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 4, 2024

A newer version of pyglet exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant