Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
v0.3.1 — Import setuptools before distutils
Browse files Browse the repository at this point in the history
- Import setuptools before importing distutils.  This way, users who import `read_version` before importing setuptools 49.2.0 (or any later versions with the same behavior) will not get a warning about importing distutils before setuptools.
- Add setuptools as a dependency
  • Loading branch information
jwodder committed Jul 12, 2020
1 parent d623721 commit 40139b2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
v0.3.1 (in development)
-----------------------
v0.3.1 (2020-07-12)
-------------------
- Import setuptools before importing distutils. This way, users who import
`read_version` before importing setuptools 49.2.0 (or any later versions with
the same behavior) will not get a warning about importing distutils before
Expand Down
2 changes: 1 addition & 1 deletion read_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
Visit <https://github.com/jwodder/read_version> for more information.
"""

__version__ = '0.3.1.dev1'
__version__ = '0.3.1'
__author__ = 'John Thorvald Wodder II'
__author_email__ = '[email protected]'
__license__ = 'MIT'
Expand Down

0 comments on commit 40139b2

Please sign in to comment.