diff --git a/CHANGES.md b/CHANGES.md index aa516eee6..8c84125e4 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +# 3.6.0 (2019-09-24) + +- Add `delete` subcommand to delete specific PyPI Packages from mirror - `PR #324` + # 3.5.0 (2019-09-14) - Add support for differential file generation - Thanks **@artagel** - `PR #313` diff --git a/README.md b/README.md index db6e38863..1914aa9c5 100644 --- a/README.md +++ b/README.md @@ -55,6 +55,7 @@ For nginx it should look something like this: ``` server { listen 127.0.0.1:80; + listen [::1]:80; server_name ; root /web; autoindex on; @@ -97,6 +98,11 @@ If you want to force bandersnatch to check everything against the master PyPI: Be aware that full syncs likely take hours depending on PyPI's performance and your network latency and bandwidth. +#### Other Commands + +* `bandersnatch delete --help` - Allows you to specify package(s) to be removed from your mirror (*dangerous*) +* `bandersnatch verify --help` - Crawls your repo and fixes any missed files + deletes any unowned files found (*dangerous*) + ### Operational notes #### Case-sensitive filesystem needed diff --git a/setup.cfg b/setup.cfg index 2a0557ba9..cd9a65f61 100644 --- a/setup.cfg +++ b/setup.cfg @@ -15,7 +15,7 @@ project_urls = Source Code = https://github.com/pypa/bandersnatch Change Log = https://github.com/pypa/bandersnatch/CHANGES.md url = https://github.com/pypa/bandersnatch/ -version = 3.6.0.dev0 +version = 3.6.0 [options] include_package_data = True @@ -72,9 +72,3 @@ doc_build = recommonmark # git+https://github.com/pypa/pypa-docs-theme.git#egg=pypa-docs-theme # git+https://github.com/python/python-docs-theme.git#egg=python-docs-theme - -[pycodestyle] -count = False -# ignore = E226,E302,E41 -max-line-length = 88 -statistics = True diff --git a/src/bandersnatch/__init__.py b/src/bandersnatch/__init__.py index 2e665eb82..4fdced9c5 100644 --- a/src/bandersnatch/__init__.py +++ b/src/bandersnatch/__init__.py @@ -19,7 +19,7 @@ def version_str(self) -> str: major=3, minor=6, micro=0, - releaselevel="dev0", + releaselevel="", serial=0, # Not currently in use with Bandersnatch versioning ) __version__ = __version_info__.version_str