File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- # 6.7.0 (Unreleased)
1+ # 6.7.0
22
33## New Features
44
55- Declare support for python 3.13 ` PR #1848 `
6- - Allow moving to PEP691 simple API for package metadata ` PR #2075 `
6+ - Add support PEP691 simple API for package metadata (off by default till 7.0) ` PR #2075 `
77
88## Bug Fixes
99
1010- Support reading HTTP proxy URLs from environment variables, and SOCKS proxy URLs from the 'mirror.proxy' config option ` PR #1861 `
11+ - Remove usage of deprecated datetime.datetime.utcnow()
12+ - Make our custom Exceptions pass B042 (#2074 )
1113
1214## CI
1315
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ project_urls =
1616 Source Code = https://github.com/pypa/bandersnatch
1717 Change Log = https://github.com/pypa/bandersnatch/blob/master/CHANGES.md
1818url = https://github.com/pypa/bandersnatch/
19- version = 6.7.0.dev0
19+ version = 6.7.0
2020
2121[options]
2222install_requires =
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ def version_str(self) -> str:
2222 major = 6 ,
2323 minor = 7 ,
2424 micro = 0 ,
25- releaselevel = "dev0 " ,
25+ releaselevel = "" ,
2626 serial = 0 , # Not currently in use with Bandersnatch versioning
2727)
2828__version__ = __version_info__ .version_str
You can’t perform that action at this time.
0 commit comments