Skip to content

Commit

Permalink
Fix setup.py Homepage URL to Github (#79)
Browse files Browse the repository at this point in the history
  • Loading branch information
cooperlees authored Oct 30, 2018
1 parent 173079d commit 5946892
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 3.0.1 (2018-10-30)

- Fix setup.py *url* to point at GitHub (https://github.com/pypa/bandersnatch)

# 3.0.0 (2018-10-30)

- Move to asyncio executors around request calls `Fixes #81` *(on BitBucket)*
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def get_install_deps():
author="Christian Theune",
author_email="[email protected]",
license="Academic Free License, version 3",
url="http://bitbucket.org/pypa/bandersnatch/",
url="https://github.com/pypa/bandersnatch/",
packages=find_packages("src"),
package_dir={"": "src"},
include_package_data=True,
Expand Down
2 changes: 1 addition & 1 deletion src/bandersnatch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def version_str(self) -> str:
__version_info__ = _VersionInfo(
major=3,
minor=0,
micro=0,
micro=1,
releaselevel="",
serial=0, # Not currently in use with Bandersnatch versioning
)
Expand Down

0 comments on commit 5946892

Please sign in to comment.