Skip to content

Update libs #2443

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

Merged
merged 5 commits into from
Nov 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ jobs:
architecture: ['x64']

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: setup
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
- name: Upload a Build Artifact
if: always() && steps.prepare-artifact.outcome == 'success'
continue-on-error: true
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pull-request-payload
path: pull_request_payload.json
Expand All @@ -87,9 +87,9 @@ jobs:
architecture: ['x64']

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: setup
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
Expand Down Expand Up @@ -121,7 +121,7 @@ jobs:
- name: Upload a Build Artifact
if: always() && steps.prepare-artifact.outcome == 'success'
continue-on-error: true
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pull-request-payload
path: pull_request_payload.json
1 change: 0 additions & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,6 @@ def run_util(filename, run_name="__main__", init_globals=None):
# See sphinx-rtd-theme docs for details on each option:
# https://sphinx-rtd-theme.readthedocs.io/en/stable/configuring.html
html_theme_options = {
'display_version': True,
'logo_only': False,
'sticky_navigation': True,
'navigation_depth': 3,
Expand Down
3 changes: 0 additions & 3 deletions doc/programming_guide/sound.rst
Original file line number Diff line number Diff line change
Expand Up @@ -303,9 +303,6 @@ To learn more about streaming, please see:
.. [#meaningbestformatheader]
See :ref:`sound-compat-easy` to learn more.

.. [#staticsourcefoot]
See the :py:class:`pyglet.media.StaticSource` class used by Arcade.

.. _sound-intermediate-playback:

Intermediate-Level Playback Control
Expand Down
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ dependencies = [
# at the cost of slow download and constant pip install -I -e .[dev]
# "pyglet@git+https://github.com/pyglet/pyglet.git@development#egg=pyglet",
# Expected future dev preview release on PyPI (not yet released)
'pyglet==2.1.dev7',
"pyglet == 2.1rc1",
"pillow~=11.0.0",
"pymunk~=6.9.0",
"pytiled-parser~=2.2.5",
"pytiled-parser~=2.2.7",
]
dynamic = ["version"]

Expand All @@ -43,14 +43,14 @@ Book = "https://learn.arcade.academy"
# Used for dev work
dev = [
# --- Documentation: Sphinx 7 based currently
"sphinx==7.3.7", # April 2024 | Updated 2024-07-15, 7.4+ is broken with sphinx-autobuild
"sphinx_rtd_theme==2.0.0", # Nov 2023
"sphinx==8.1.3", # April 2024 | Updated 2024-07-15, 7.4+ is broken with sphinx-autobuild
"sphinx_rtd_theme==3.0.1", # Nov 2024
"sphinx-rtd-dark-mode==1.3.0",
"sphinx-autobuild==2024.4.16", # April 2024 | Due to this, Python 3.10+ is required to serve docs
"sphinx-autobuild==2024.10.3", # April 2024 | Due to this, Python 3.10+ is required to serve docs
"sphinx-copybutton==0.5.2", # April 2023
"sphinx-sitemap==2.6.0", # April 2024
"pygments==2.17.2", # 2.18 has breaking changes in lexer
"docutils==0.20.1", # ?
"pygments==2.18.0", # 2.18 has breaking changes in lexer
"docutils==0.21.2", # ?
# "pyyaml==6.0.1",
# "readthedocs-sphinx-search==0.3.2",
# "sphinx-autodoc-typehints==2.0.1",
Expand All @@ -63,8 +63,8 @@ dev = [
"black",
"ruff",
"mypy",
"pyright==1.1.372",
"typer[all]==0.11.0", # Needed for make.py
"pyright==1.1.387",
"typer[all]==0.12.5", # Needed for make.py
"wheel",
]
# Testing only
Expand Down
Loading