- Notifications
You must be signed in to change notification settings - Fork8
Develop#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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Merged
Uh oh!
There was an error while loading.Please reload this page.
Merged
Develop#10
Changes fromall commits
Commits
Show all changes
44 commits Select commitHold shift + click to select a range
014f515 global library refactor + fixes + improvements + new additions
daveoncode88468f5 travis integration
daveoncodea239092 specified branches in travis settings
daveoncode16f2ec9 docs update
daveoncoded0af466 added coverage script to travis config
daveoncoded07853b RomanNumbers.range + asciify
daveoncodefc50c10 uuid() has now an `as_hex` param to return the UUID as hex
daveoncodec29b258 fixed asciify test for python < 3.7
daveoncode4726ae8 added "allow_hex" to is_uuid()
daveoncode26016e1 updated setup.py (using setuptools) + added build in travis config
daveoncode70dbcfc updated travis config (build docs as last step)
daveoncoded14b662 RomanNumbers, StringCompressor and StringFormatter are now private cl…
daveoncodea6329f3 back to 100% code coverage
daveoncode67e0307 updated README, CHANGELOG, LICENSE and docs
daveoncodefec8fd2 improved README.md
daveoncode59868ef added readthedocs config
daveoncode33ddf09 updates readthedocs config, removed docs build dir
daveoncode4a6a4f1 fixed link to changelog in README.md
daveoncode136ff93 improved is_palindrome and docs
daveoncodec465ec2 roman_range moved to generation.py + doc improvements
daveoncode00167e4 sound sphinx doc structure
daveoncode3103a3e doc badge link fix
daveoncode947ceb1 added overview to shpinx doc index.rst
daveoncodee860da8 fixed roman_range (descending generation) + better docs
daveoncode7901698 added new example for roman_range in README.md
daveoncode6d3e319 added check version instructions + extended CHANGELOG.md
daveoncodead3c497 added check version instructions to README.md
daveoncodeab06a8b fixed: is_email is now complaint with email specifications
daveoncode915676a updated CHANGELOG.md with is_email fix
daveoncode0623299 defined markdown as description content type in setup.py + added buil…
daveoncodefacbf4b added twine to dev.dependencies.txt
daveoncodefb12401 updated dev.dependencies.txt
daveoncoded8161ac twine downgrade for python < 3.6
daveoncodebb8cef6 reordering in README.md
daveoncodeebae878 is_slug now allows multiple consecutive separator signs between words
daveoncodea98451a fixed typo
daveoncode35a3f91 fixed same typo again
daveoncodecaad228 improved is_email + more tests
daveoncode2aa0009 removed erroneously pasted text from validation.py
daveoncode391edf4 updated CHANGELOG.md intro
daveoncode6df42b4 code formatting and typo fixes
daveoncoded535741 relative import for internal dependencies in generation.py
daveoncode0c36f5d avoided unnecessary type casting
daveoncoded903db3 faster shuffle()
daveoncodeFile filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
3 changes: 2 additions & 1 deletion.gitignore
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 |
|---|---|---|
| @@ -119,4 +119,5 @@ com_crashlytics_export_strings.xml | ||
| crashlytics.properties | ||
| crashlytics-build.properties | ||
| .ENV | ||
24 changes: 24 additions & 0 deletions.readthedocs.yml
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,24 @@ | ||
| # Read the Docs configuration file | ||
| # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details | ||
| # Required | ||
| version: 2 | ||
| # Build documentation in the docs/ directory with Sphinx | ||
| sphinx: | ||
| configuration: docs/conf.py | ||
| builder: html | ||
| fail_on_warning: true | ||
| # Build documentation with MkDocs | ||
| #mkdocs: | ||
| # configuration: mkdocs.yml | ||
| # Optionally build your docs in additional formats such as PDF and ePub | ||
| formats: all | ||
| # Optionally set the version of Python and requirements required to build your docs | ||
| python: | ||
| version: 3.5 | ||
| install: | ||
| - requirements: dev.requirements.txt |
17 changes: 17 additions & 0 deletions.travis.yml
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,17 @@ | ||
| language: python | ||
| python: | ||
| - "3.5" | ||
| - "3.6" | ||
| - "3.7" | ||
| - "3.8" | ||
| install: | ||
| - pip install -r dev.requirements.txt | ||
| script: | ||
| - coverage run -m unittest && coverage report # runs tests with coverage | ||
| - bash <(curl -s https://codecov.io/bash) # generate coverage report | ||
| - python setup.py sdist bdist_wheel # build python package | ||
| - cd docs && make html # generate html docs | ||
| branches: | ||
| only: | ||
| - master | ||
| - develop |
92 changes: 92 additions & 0 deletionsCHANGELOG.md
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
2 changes: 1 addition & 1 deletionLICENSE
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
1 change: 0 additions & 1 deletionMANIFEST
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,4 +1,3 @@ | ||
| # file GENERATED by distutils, do NOT edit | ||
| README.md | ||
| setup.py | ||
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
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.