Skip to content

Commit 9f1cdc2

Browse files
authored
Update (#1826)
1 parent 1fdd4ca commit 9f1cdc2

File tree

6 files changed

+15
-33
lines changed

6 files changed

+15
-33
lines changed

CONTRIBUTING.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,8 @@ it will automatically regenerate, and browser tabs will automatically refresh to
140140
If you suspect the automatic rebuilds are failing to detect changes, you can
141141
run a simpler one-time build using the following instructions.
142142

143+
.. _how-to-compile:
144+
143145
One-time build
144146
~~~~~~~~~~~~~~
145147

doc/contributing_guide/how_to_build.rst

Lines changed: 0 additions & 3 deletions
This file was deleted.

doc/contributing_guide/index.rst

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,14 @@
1-
.. _cg_index:
2-
3-
Arcade Contributing Guide
4-
=========================
5-
6-
The contributing guide is for people who want to propose changes,
7-
implement features, or report bugs in Arcade itself.
8-
9-
For information on how to use arcade to build your own projects, please see
10-
:ref:`pg_index`.
11-
121

132
.. _cg_index_quickstart:
143

15-
Contributing Quickstart
16-
^^^^^^^^^^^^^^^^^^^^^^^
17-
For a quick overview, please see
18-
`CONTRIBUTING.md on GitHub <https://github.com/pythonarcade/arcade/blob/development/CONTRIBUTING.md>`_.
19-
4+
.. include:: ../../CONTRIBUTING.rst
205

216
.. _cg_index_contents:
227

238
Contributing Guide Contents
24-
^^^^^^^^^^^^^^^^^^^^^^^^^^^
9+
---------------------------
2510

26-
The sections linked below will provide more in-depth coverage of various topics
11+
The sections linked below provide more in-depth coverage of various topics
2712
contributing to arcade, including links to outside resources on development tools
2813
and practices.
2914

@@ -32,6 +17,5 @@ and practices.
3217

3318
directory_structure
3419
how_to_contribute
35-
how_to_build
3620
how_to_submit_changes
3721
release_checklist

doc/index.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@ The Python Arcade Library
116116
contributing_guide/index
117117
contributing_guide/directory_structure
118118
contributing_guide/how_to_contribute
119-
contributing_guide/how_to_build
120119
contributing_guide/how_to_submit_changes
121120
contributing_guide/release_checklist
122121

make.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
99
For help, see the following:
1010
11-
* CONTRIBUTING.md
11+
* CONTRIBUTING.rst
1212
* The output of python make.py --help
1313
"""
1414
import os
@@ -76,7 +76,7 @@ def _resolve(p: PathLike, strict: bool = False) -> Path:
7676
not_found = [binary for binary in binaries if which(binary) is None]
7777
if not_found:
7878
print("Command-line tools not found: " + ', '.join(not_found))
79-
print("Did you forget to install them with `pip`? See CONTRIBUTING.md file for instructions.")
79+
print("Did you forget to install them with `pip`? See CONTRIBUTING.rst file for instructions.")
8080
exit(1)
8181
for library in libraries:
8282
def find(library):
@@ -87,7 +87,7 @@ def find(library):
8787
not_found = [library for library in libraries if not find(library)]
8888
if not_found:
8989
print("Python dependencies not found: " + ', '.join(not_found))
90-
print("Did you forget to install them with `pip`? See CONTRIBUTING.md file for instructions.")
90+
print("Did you forget to install them with `pip`? See CONTRIBUTING.rst file for instructions.")
9191
exit(1)
9292

9393

@@ -484,7 +484,7 @@ def whichshell():
484484

485485
if shell_name in SHELLS_WITH_AUTOCOMPLETE:
486486
print("This shell is known to support tab-completion!")
487-
print("See CONTRIBUTING.md for more information on how to enable it.")
487+
print("See CONTRIBUTING.rst for more information on how to enable it.")
488488

489489

490490
if __name__ == "__main__":

pyproject.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ classifiers = [
2222
]
2323
dependencies = [
2424
"pyglet>=2.0.8,<2.1",
25-
"pillow~=9.4.0",
26-
"pymunk~=6.4.0",
25+
"pillow~=9.5.0",
26+
"pymunk~=6.5.0",
2727
"pytiled-parser~=2.2.3"
2828
]
2929
dynamic = ["version"]
@@ -45,16 +45,16 @@ dev = [
4545
"coveralls",
4646
"pytest-mock",
4747
"pytest-cov",
48-
"pygments==2.14.0",
48+
"pygments==2.15.1",
4949
"docutils==0.19",
5050
"furo",
5151
"pyright",
5252
"pyyaml==6.0",
53-
"sphinx==6.2.1",
53+
"sphinx==7.0.1",
5454
"sphinx-autobuild==2021.3.14",
55-
"sphinx-copybutton==0.5.1",
55+
"sphinx-copybutton==0.5.2",
5656
# Intentionally kept at 2.3 until this bugfix is published: https://github.com/jdillard/sphinx-sitemap/pull/62
57-
"sphinx-sitemap==2.3.0",
57+
"sphinx-sitemap==2.5.0",
5858
"typer[all]==0.7.0",
5959
"wheel",
6060
]

0 commit comments

Comments
 (0)