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

Work on Issue #2023 #2037

Merged
merged 3 commits into from
Mar 28, 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
13 changes: 0 additions & 13 deletions doc/_static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -111,22 +111,9 @@ to align them neatly */
.toctree-l1 {
margin-left: 5px;
}
.toc-outside-links ul {
width: fit-content;
columns: 1;
}
.toc-outside-links li p, .toc-outside-links ul li {
margin-left: 5px;
}
.toc-outside-links a {
text-decoration: none;
}
.toctree-wrapper a {
text-decoration: none;
}
.toc-outside-links a:hover {
text-decoration: underline;
}
.toctree-wrapper a:hover {
text-decoration: underline;
}
Expand Down
2 changes: 1 addition & 1 deletion doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@

# General information about the project.
project = 'Python Arcade Library'
copyright = '2023, Paul Vincent Craven'
copyright = '2024, Paul Vincent Craven'
author = 'Paul Vincent Craven'

# The version info for the project you're documenting, acts as replacement for
Expand Down
59 changes: 21 additions & 38 deletions doc/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -145,21 +145,8 @@ The Python Arcade Library
GitHub <https://github.com/pythonarcade/arcade>
programming_guide/release_notes
License <https://github.com/pythonarcade/arcade/blob/development/license.rst>

.. container:: main-page-item-wrapper

.. container:: single-col-box

.. image:: images/source.svg
:alt: Source icon
:class: heading-icon

.. toctree::
:maxdepth: 1
:caption: Contributing

contributing_guide/index
contributing_guide/release_checklist
contributing_guide/index
contributing_guide/release_checklist

.. container:: main-page-item-wrapper

Expand All @@ -169,18 +156,16 @@ The Python Arcade Library

.. container:: main-page-item-sub-wrapper

.. container:: main-page-item-title

Social

.. container:: toc-outside-links
.. toctree::
:maxdepth: 1
:caption: Social

* `Discord (most active spot) <https://discord.gg/ZjGDqMp>`_
* `Reddit /r/pythonarcade <https://www.reddit.com/r/pythonarcade/>`_
* `Twitter @ArcadeLibrary <https://twitter.com/arcadelibrary?lang=en>`_
* `Instagram @PythonArcadeLibrary <https://www.instagram.com/PythonArcadeLibrary/>`_
* `Facebook @ArcadeLibrary <https://www.facebook.com/ArcadeLibrary/>`_
* :ref:`diversity_statement`
Discord (most active spot) <https://discord.gg/ZjGDqMp>
Reddit /r/pythonarcade <https://www.reddit.com/r/pythonarcade/>
Twitter @ArcadeLibrary <https://twitter.com/arcadelibrary?lang=en>
Instagram @PythonArcadeLibrary <https://www.instagram.com/PythonArcadeLibrary/>
Facebook @ArcadeLibrary <https://www.facebook.com/ArcadeLibrary/>
community/diversity

.. container:: main-page-item-wrapper

Expand All @@ -190,16 +175,14 @@ The Python Arcade Library

.. container:: main-page-item-sub-wrapper

.. container:: main-page-item-title

Learning Resources

.. container:: toc-outside-links

* `Book - Learn to program with Arcade <https://learn.arcade.academy/en/latest/>`_
* `Peer To Peer Gaming With Arcade and Python Banyan <https://mryslab.github.io/bots-in-pieces/python-banyan/arcade/2020/02/21/p2p-arcade-1.html>`_
* `US PyCon 2022 Talk <https://youtu.be/JP6EnuQT2wA>`_
* `US PyCon 2019 Tutorial <https://youtu.be/Djtm1DzWSvo>`_
* `Aus PyCon 2018 Multiplayer Games <https://youtu.be/2SMkk63k6Ik>`_
* `US PyCon 2018 Talk <https://youtu.be/DAWHMHMPVHU>`_
.. toctree::
:maxdepth: 1
:caption: Learning Resources

Book - Learn to program with Arcade <https://learn.arcade.academy/en/latest/>
Peer To Peer Gaming With Arcade and Python Banyan <https://mryslab.github.io/bots-in-pieces/python-banyan/arcade/2020/02/21/p2p-arcade-1.html>
US PyCon 2022 Talk <https://youtu.be/JP6EnuQT2wA>
US PyCon 2019 Tutorial <https://youtu.be/Djtm1DzWSvo>
Aus PyCon 2018 Multiplayer Games <https://youtu.be/2SMkk63k6Ik>
US PyCon 2018 Talk <https://youtu.be/DAWHMHMPVHU>

16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,14 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries :: Python Modules"
]
dependencies = [
"pyglet>=2.0.14,<2.1",
"pillow~=10.0.0",
"pymunk~=6.5.1",
"pillow~=10.2.0",
"pymunk~=6.6.0",
"pytiled-parser~=2.2.3"
]
dynamic = ["version"]
Expand All @@ -47,16 +48,16 @@ dev = [
"coveralls",
"pytest-mock",
"pytest-cov",
"pygments==2.16.1",
"pygments==2.17.2",
"docutils==0.20.1",
"furo",
"pyright==1.1.352",
"pyright==1.1.355",
"pyyaml==6.0.1",
"sphinx==7.2.2",
"sphinx-autobuild==2021.3.14",
"sphinx==7.2.6",
"sphinx-autobuild==2024.2.4",
"sphinx-copybutton==0.5.2",
"sphinx-sitemap==2.5.1",
"typer[all]==0.7.0",
"typer[all]==0.11.0",
"wheel",
]
# Testing only
Expand All @@ -65,7 +66,6 @@ testing_libraries = [
"pytest-mock",
"pytest-cov",
"pyyaml==6.0.1",
"typer[all]==0.7.0",
]

[project.scripts]
Expand Down
Loading