mirror of
https://github.com/pypa/pip
synced 2023-12-13 21:30:23 +01:00
Bump for release
This commit is contained in:
parent
5e7cc16c3b
commit
5364f26f96
4 changed files with 11 additions and 3 deletions
10
NEWS.rst
10
NEWS.rst
|
@ -9,6 +9,16 @@
|
|||
|
||||
.. towncrier release notes start
|
||||
|
||||
23.3.1 (2023-10-21)
|
||||
===================
|
||||
|
||||
Bug Fixes
|
||||
---------
|
||||
|
||||
- Handle a timezone indicator of Z when parsing dates in the self check. (`#12338 <https://github.com/pypa/pip/issues/12338>`_)
|
||||
- Fix bug where installing the same package at the same time with multiple pip processes could fail. (`#12361 <https://github.com/pypa/pip/issues/12361>`_)
|
||||
|
||||
|
||||
23.3 (2023-10-15)
|
||||
=================
|
||||
|
||||
|
|
|
@ -1 +0,0 @@
|
|||
Handle a timezone indicator of Z when parsing dates in the self check.
|
|
@ -1 +0,0 @@
|
|||
Fix bug where installing the same package at the same time with multiple pip processes could fail.
|
|
@ -1,6 +1,6 @@
|
|||
from typing import List, Optional
|
||||
|
||||
__version__ = "24.0.dev0"
|
||||
__version__ = "23.3.1"
|
||||
|
||||
|
||||
def main(args: Optional[List[str]] = None) -> int:
|
||||
|
|
Loading…
Reference in a new issue