forked from jehiah/urlnorm
-
Notifications
You must be signed in to change notification settings - Fork 12
Add python 3 support #10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
d66bb39
Add tox and update .gitignore
jogo 36e0609
First pass at python3 support
jogo 947ffd3
Manually update for python3 compatability
jogo 42aee5e
Add python3 support via modernize
jogo c90e8e5
Add python 3 classifiers
jogo 9d76bad
Bump version
jogo File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -2,6 +2,7 @@ pip-log.txt | |
| build | ||
| dist | ||
| MANIFEST | ||
|
|
||
| __pycache__/ | ||
| *.pyc | ||
| .pytest_cache/ | ||
| .tox/ | ||
| __pycache__/ | ||
This file contains hidden or 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 |
|---|---|---|
| @@ -1,16 +1,23 @@ | ||
| from distutils.core import setup | ||
|
|
||
| # also update in urlnorm.py | ||
| version = '1.1.2.pinterest3' | ||
| version = '1.1.2.pinterest4' | ||
|
|
||
| setup(name='urlnorm', | ||
| version=version, | ||
| long_description=open("./README.txt", "r").read(), | ||
| description="Normalize a URL to a standard unicode encoding", | ||
| py_modules=['urlnorm'], | ||
| license='MIT License', | ||
| install_requires=['six'], | ||
| author='Jehiah Czebotar', | ||
| author_email='jehiah@gmail.com', | ||
| url='http://github.com/jehiah/urlnorm', | ||
| download_url="http://github.com/downloads/jehiah/urlnorm/urlnorm-%s.tar.gz" % version, | ||
| classifiers=[ | ||
| 'Operating System :: OS Independent', | ||
| 'Programming Language :: Python :: 2.7', | ||
| 'Programming Language :: Python :: 3', | ||
| 'Programming Language :: Python :: 3.6', | ||
| ], | ||
| ) |
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| [tox] | ||
| envlist=py27,py3 | ||
|
|
||
| [testenv] | ||
| deps = pytest | ||
| commands = pytest test_urlnorm.py |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you consolidate these
siximports?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
not sure why its done this way, but this is what
python-modernizeautomatically did