-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump to version 24.11.0 * Bump version of the common.html page. The readthedocs version changed but not the base one. This is an unfortunate necessary change, without that pydoctor would be able to generate bogus pages with readthedocs theme customization without even triggering a warning. But for the classic theme users, this will unnecessarily trigger a warning if one has customized common.html. Sorry for the desagreement. * Use the toml package only if python_version < "3.11". * Since we've dropped support for Python 3.7, we don't need the importlib_metadata dependency.
- Loading branch information
1 parent
26cbc91
commit 1ef003b
Showing
5 changed files
with
20 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[metadata] | ||
name = pydoctor | ||
version = 24.3.3.dev0 | ||
version = 24.11.0.dev.0 | ||
author = Michael Hudson-Doyle | ||
author_email = [email protected] | ||
maintainer = Maarten ter Huurne | ||
|
@@ -41,13 +41,13 @@ install_requires = | |
Twisted | ||
urllib3>=2.0 | ||
requests | ||
astor; python_version < "3.9" | ||
attrs | ||
docutils>=0.17 | ||
lunr>=0.6.2,<0.8.0 | ||
configargparse | ||
toml | ||
importlib_metadata; python_version < "3.8" | ||
|
||
toml; python_version < "3.11" | ||
astor; python_version < "3.9" | ||
importlib_resources; python_version < "3.9" | ||
|
||
[options.extras_require] | ||
|