File tree Expand file tree Collapse file tree 4 files changed +12
-8
lines changed
Expand file tree Collapse file tree 4 files changed +12
-8
lines changed Original file line number Diff line number Diff line change 1+ # 3.6.0 (2019-09-24)
2+
3+ - Add ` delete ` subcommand to delete specific PyPI Packages from mirror - ` PR #324 `
4+
15# 3.5.0 (2019-09-14)
26
37- Add support for differential file generation - Thanks ** @artagel ** - ` PR #313 `
Original file line number Diff line number Diff line change @@ -55,6 +55,7 @@ For nginx it should look something like this:
5555```
5656 server {
5757 listen 127.0.0.1:80;
58+ listen [::1]:80;
5859 server_name <mymirrorname>;
5960 root <path-to-mirror>/web;
6061 autoindex on;
@@ -97,6 +98,11 @@ If you want to force bandersnatch to check everything against the master PyPI:
9798
9899Be aware that full syncs likely take hours depending on PyPI's performance and your network latency and bandwidth.
99100
101+ #### Other Commands
102+
103+ * ` bandersnatch delete --help ` - Allows you to specify package(s) to be removed from your mirror (* dangerous* )
104+ * ` bandersnatch verify --help ` - Crawls your repo and fixes any missed files + deletes any unowned files found (* dangerous* )
105+
100106### Operational notes
101107
102108#### Case-sensitive filesystem needed
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ project_urls =
1515 Source Code = https://github.com/pypa/bandersnatch
1616 Change Log = https://github.com/pypa/bandersnatch/CHANGES.md
1717url = https://github.com/pypa/bandersnatch/
18- version = 3.6.0.dev0
18+ version = 3.6.0
1919
2020[options]
2121include_package_data = True
@@ -72,9 +72,3 @@ doc_build =
7272 recommonmark
7373 # git+https://github.com/pypa/pypa-docs-theme.git#egg=pypa-docs-theme
7474 # git+https://github.com/python/python-docs-theme.git#egg=python-docs-theme
75-
76- [pycodestyle]
77- count = False
78- # ignore = E226,E302,E41
79- max-line-length = 88
80- statistics = True
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ def version_str(self) -> str:
1919 major = 3 ,
2020 minor = 6 ,
2121 micro = 0 ,
22- releaselevel = "dev0 " ,
22+ releaselevel = "" ,
2323 serial = 0 , # Not currently in use with Bandersnatch versioning
2424)
2525__version__ = __version_info__ .version_str
You can’t perform that action at this time.
0 commit comments