Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit44f7a73

Browse files
committed
Don't support building documentation on Python 3.7
This removes the specially cased alternative lower versions of`sphinx` and its dependencies that, since#1954, were only forPython 3.7. As discussed in comments there, this simplifies thedocumentation dependencies and avoids a situation where the versionof Python used to build the documentation has a noticeable effecton the generated result.This also conditions running the "Documentation" step in the mainCI test workflow (`pythonpackage.yml`) on the Python version notbeing 3.7 (otherwise the job would always fail).The only change this makes to the support status of GitPython onPython 3.7 is to no longer support building documentation on 3.7.GitPython can still be installed and used on 3.7 (though usuallythis would not be a good idea, outside of testing, since Python 3.7itself has not been supported by the Python Software Foundation forquite some time). In addition, the documentation, which can bebuilt on any version >= 3.8 (including 3.13 starting in#1954) isno less relevant to usage on Python 3.7 than it was before.
1 parent651fcf0 commit44f7a73

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

‎.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ jobs:
9999
continue-on-error:false
100100

101101
-name:Documentation
102+
if:matrix.python-version != '3.7'
102103
run:|
103104
pip install ".[doc]"
104105
make -C doc html

‎doc/requirements.txt

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,3 @@
1-
sphinx>=7.1.2,<7.2 ;python_version>="3.8"
2-
sphinx==4.3.2 ;python_version<"3.8"
3-
sphinxcontrib-applehelp>=1.0.2,<=1.0.4 ;python_version<"3.8"
4-
sphinxcontrib-devhelp==1.0.2 ;python_version<"3.8"
5-
sphinxcontrib-htmlhelp>=2.0.0,<=2.0.1 ;python_version<"3.8"
6-
sphinxcontrib-qthelp==1.0.3 ;python_version<"3.8"
7-
sphinxcontrib-serializinghtml==1.1.5 ;python_version<"3.8"
1+
sphinx>=7.1.2,<7.2
82
sphinx_rtd_theme
93
sphinx-autodoc-typehints

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp