Skip to content

Commit 785a450

Browse files
authored
Update version to 5.1.0 for release (#1053)
* Update version to 5.1.0 for release - Also add CI to run in python 3.10 + claim support * Use strs so 3.10 CI works * Revert enabling 3.10 - Hit issues
1 parent 98a4b60 commit 785a450

File tree

6 files changed

+7
-5
lines changed

6 files changed

+7
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
strategy:
1717
matrix:
18-
python-version: [3.8, 3.9]
18+
python-version: ["3.8", "3.9"]
1919
os: [macOS-latest, windows-latest]
2020

2121
steps:

.github/workflows/ci_ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
strategy:
2323
matrix:
24-
python-version: [3.8, 3.9]
24+
python-version: ["3.8", "3.9"]
2525
os: [ubuntu-latest]
2626

2727
steps:

CHANGES.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 5.1.0 (2021-XX-XX)
1+
# 5.1.0 (2021-11-02)
22

33
## New Features
44

@@ -15,6 +15,7 @@
1515
## Documentation
1616

1717
- Add Storage Options documentation `PR #1006` - Thanks **cooperlees**
18+
- Update all dependencies to latest except pyparsing + docutils
1819

1920
## Dependencies
2021

requirements_docs.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# sphinx 3.5.4 wants 0.16 here ... Try update once we get a newer sphinx
2+
# This is being worked on - https://github.com/sphinx-doc/sphinx/issues/9777
23
docutils==0.16 # pyup: ignore
34
# Have to ignore pyparsing as packaging <= 3.0.0
45
pyparsing==2.4.7 # pyup: ignore

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ project_urls =
1515
Source Code = https://github.com/pypa/bandersnatch
1616
Change Log = https://github.com/pypa/bandersnatch/blob/master/CHANGES.md
1717
url = https://github.com/pypa/bandersnatch/
18-
version = 5.1.0.dev0
18+
version = 5.1.0
1919

2020
[options]
2121
install_requires =

src/bandersnatch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def version_str(self) -> str:
2222
major=5,
2323
minor=1,
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

0 commit comments

Comments
 (0)