python-docs-theme 2024.10__tar.gz → 2024.12__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (17) hide show
  1. {python_docs_theme-2024.10 → python_docs_theme-2024.12}/PKG-INFO +2 -2
  2. {python_docs_theme-2024.10 → python_docs_theme-2024.12}/pyproject.toml +1 -1
  3. {python_docs_theme-2024.10 → python_docs_theme-2024.12}/python_docs_theme/static/pydoctheme.css +7 -0
  4. {python_docs_theme-2024.10 → python_docs_theme-2024.12}/LICENSE +0 -0
  5. {python_docs_theme-2024.10 → python_docs_theme-2024.12}/README.md +0 -0
  6. {python_docs_theme-2024.10 → python_docs_theme-2024.12}/python_docs_theme/__init__.py +0 -0
  7. {python_docs_theme-2024.10 → python_docs_theme-2024.12}/python_docs_theme/footerdonate.html +0 -0
  8. {python_docs_theme-2024.10 → python_docs_theme-2024.12}/python_docs_theme/layout.html +0 -0
  9. {python_docs_theme-2024.10 → python_docs_theme-2024.12}/python_docs_theme/static/copybutton.js +0 -0
  10. {python_docs_theme-2024.10 → python_docs_theme-2024.12}/python_docs_theme/static/menu.js +0 -0
  11. {python_docs_theme-2024.10 → python_docs_theme-2024.12}/python_docs_theme/static/py.png +0 -0
  12. {python_docs_theme-2024.10 → python_docs_theme-2024.12}/python_docs_theme/static/py.svg +0 -0
  13. {python_docs_theme-2024.10 → python_docs_theme-2024.12}/python_docs_theme/static/pydoctheme_dark.css +0 -0
  14. {python_docs_theme-2024.10 → python_docs_theme-2024.12}/python_docs_theme/static/search-focus.js +0 -0
  15. {python_docs_theme-2024.10 → python_docs_theme-2024.12}/python_docs_theme/static/sidebar.js_t +0 -0
  16. {python_docs_theme-2024.10 → python_docs_theme-2024.12}/python_docs_theme/static/themetoggle.js +0 -0
  17. {python_docs_theme-2024.10 → python_docs_theme-2024.12}/python_docs_theme/theme.conf +0 -0
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: python-docs-theme
3
- Version: 2024.10
3
+ Version: 2024.12
4
4
  Summary: The Sphinx theme for the CPython docs and related projects
5
5
  Author-email: PyPA <distutils-sig@python.org>
6
6
  Requires-Python: >=3.9
@@ -6,7 +6,7 @@ requires = [
6
6
 
7
7
  [project]
8
8
  name = "python-docs-theme"
9
- version = "2024.10"
9
+ version = "2024.12"
10
10
  description = "The Sphinx theme for the CPython docs and related projects"
11
11
  readme = "README.md"
12
12
  license.file = "LICENSE"
@@ -754,3 +754,10 @@ div.deprecated-removed .versionmodified,
754
754
  div.versionremoved .versionmodified {
755
755
  color: var(--deprecated);
756
756
  }
757
+
758
+ /* Hide header when printing */
759
+ @media print {
760
+ div.mobile-nav {
761
+ display: none;
762
+ }
763
+ }