-
Notifications
You must be signed in to change notification settings - Fork 146
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from google/fix-version
Remove dependency on distutils2
- Loading branch information
Showing
4 changed files
with
7 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,6 @@ | |
import re | ||
|
||
from setuptools import setup | ||
from distutils2 import get_version | ||
|
||
def get_long_description(): | ||
"""Transform README.md into a usable long description. | ||
|
@@ -41,7 +40,7 @@ def replace_relative_with_absolute(match): | |
|
||
setup( | ||
name='pybadges', | ||
version= get_version('pybadges/version.py'), | ||
version= '2.2.1', # Also change in version.py. | ||
author='Brian Quinlan', | ||
author_email='[email protected]', | ||
classifiers=[ | ||
|