-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v0.10.0 — PEP 691 and downloading packages
- Support Python 3.10 - Support PEP 691 - Send "Accept" headers in requests (except for `stream_project_names()`) listing both the new JSON format and the old HTML format - `parse_repo_project_response()` and `parse_repo_index_response()` now support both the JSON and HTML formats - Add `parse_repo_index_json()` and `parse_repo_project_json()` functions - Gave `DistributionPackage` a `from_pep691_details()` classmethod - `DistributionPackage.has_metadata` will now be `None` if not specified by a JSON response - `DistributionPackage.metadata_url` is now always non-`None` - Gave `DistributionPackage` a `digests` attribute - The `get_digests()` method of `DistributionPackage` is now deprecated; use `digests` instead - Digest fragments are now removed from `DistributionPackage.url` when parsing HTML responses - Warn on encountering a repository version with a greater minor version than expected - Gave `PyPISimple` a `download_package()` method
- Loading branch information
Showing
5 changed files
with
7 additions
and
7 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 |
---|---|---|
|
@@ -14,7 +14,7 @@ | |
for more information. | ||
""" | ||
|
||
__version__ = "0.10.0.dev1" | ||
__version__ = "0.10.0" | ||
__author__ = "John Thorvald Wodder II" | ||
__author_email__ = "[email protected]" | ||
__license__ = "MIT" | ||
|