Skip to content

Commit ed5612c

Browse files
pvcravenPaul Craven
and
Paul Craven
authored
Update libs (#2443)
* Update libs * Update * Update * Update * Update --------- Co-authored-by: Paul Craven <[email protected]>
1 parent 2bb16cd commit ed5612c

File tree

4 files changed

+15
-19
lines changed

4 files changed

+15
-19
lines changed

.github/workflows/test.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ jobs:
2222
architecture: ['x64']
2323

2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626
- name: setup
27-
uses: actions/setup-python@v4
27+
uses: actions/setup-python@v5
2828
with:
2929
python-version: ${{ matrix.python-version }}
3030
architecture: ${{ matrix.architecture }}
@@ -69,7 +69,7 @@ jobs:
6969
- name: Upload a Build Artifact
7070
if: always() && steps.prepare-artifact.outcome == 'success'
7171
continue-on-error: true
72-
uses: actions/upload-artifact@v3
72+
uses: actions/upload-artifact@v4
7373
with:
7474
name: pull-request-payload
7575
path: pull_request_payload.json
@@ -87,9 +87,9 @@ jobs:
8787
architecture: ['x64']
8888

8989
steps:
90-
- uses: actions/checkout@v3
90+
- uses: actions/checkout@v4
9191
- name: setup
92-
uses: actions/setup-python@v4
92+
uses: actions/setup-python@v5
9393
with:
9494
python-version: ${{ matrix.python-version }}
9595
architecture: ${{ matrix.architecture }}
@@ -121,7 +121,7 @@ jobs:
121121
- name: Upload a Build Artifact
122122
if: always() && steps.prepare-artifact.outcome == 'success'
123123
continue-on-error: true
124-
uses: actions/upload-artifact@v3
124+
uses: actions/upload-artifact@v4
125125
with:
126126
name: pull-request-payload
127127
path: pull_request_payload.json

doc/conf.py

-1
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,6 @@ def run_util(filename, run_name="__main__", init_globals=None):
189189
# See sphinx-rtd-theme docs for details on each option:
190190
# https://sphinx-rtd-theme.readthedocs.io/en/stable/configuring.html
191191
html_theme_options = {
192-
'display_version': True,
193192
'logo_only': False,
194193
'sticky_navigation': True,
195194
'navigation_depth': 3,

doc/programming_guide/sound.rst

-3
Original file line numberDiff line numberDiff line change
@@ -303,9 +303,6 @@ To learn more about streaming, please see:
303303
.. [#meaningbestformatheader]
304304
See :ref:`sound-compat-easy` to learn more.
305305
306-
.. [#staticsourcefoot]
307-
See the :py:class:`pyglet.media.StaticSource` class used by Arcade.
308-
309306
.. _sound-intermediate-playback:
310307

311308
Intermediate-Level Playback Control

pyproject.toml

+9-9
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ dependencies = [
2424
# at the cost of slow download and constant pip install -I -e .[dev]
2525
# "pyglet@git+https://github.com/pyglet/pyglet.git@development#egg=pyglet",
2626
# Expected future dev preview release on PyPI (not yet released)
27-
'pyglet==2.1.dev7',
27+
"pyglet == 2.1rc1",
2828
"pillow~=11.0.0",
2929
"pymunk~=6.9.0",
30-
"pytiled-parser~=2.2.5",
30+
"pytiled-parser~=2.2.7",
3131
]
3232
dynamic = ["version"]
3333

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

0 commit comments

Comments
 (0)