Skip to content

Commit

Permalink
fix: Build package from fresh build folder. Fixes #1181
Browse files Browse the repository at this point in the history
  • Loading branch information
ecederstrand committed Mar 31, 2023
1 parent fa8a519 commit 32b435c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ HEAD
----


5.0.1
-----
- Fix PyPI package. No source code changes.


5.0.0
-----
- Make SOAP-based autodiscovery the default, and remove support for POX-based
Expand Down
2 changes: 1 addition & 1 deletion exchangelib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
from .transport import BASIC, CBA, DIGEST, GSSAPI, NTLM, OAUTH2, SSPI
from .version import Build, Version

__version__ = "5.0.0"
__version__ = "5.0.1"

__all__ = [
"__version__",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Bump version in CHANGELOG.md
* Generate documentation: pdoc3 --html exchangelib -o docs --force
* Commit and push changes
* Build package: rm -rf dist/* && python setup.py sdist bdist_wheel
* Build package: rm -rf build dist && python setup.py sdist bdist_wheel
* Push to PyPI: twine upload dist/*
* Create release on GitHub
"""
Expand Down

0 comments on commit 32b435c

Please sign in to comment.