Skip to content

Commit

Permalink
feat(version): 0.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
yhay81 committed Jan 23, 2021
1 parent 7ebe16f commit 1907947
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 12 deletions.
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,14 @@ coverage:
sites:
python scripts/site_list.py
publish:
pip install twine
rm -fr build dist .egg socialname.egg-info
pip install twine wheel
python setup.py sdist bdist_wheel
twine upload dist/*
rm -fr build dist .egg socialname.egg-info
testpublish:
rm -fr build dist .egg socialname.egg-info
pip install twine wheel
python setup.py sdist bdist_wheel
twine upload --repository testpypi dist/*
rm -fr build dist .egg socialname.egg-info
4 changes: 1 addition & 3 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
bs4
cerberus
Cerberus
colorama
lxml
requests
torrequest
psutil
Expand Down
12 changes: 5 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,11 @@


install_requires = [
"bs4",
"cerberus",
"colorama",
"lxml",
"requests",
"torrequest",
"psutil",
"Cerberus>=1.3.2",
"colorama>=0.4.4",
"requests>=2.25.1",
"torrequest>=0.1.0",
"psutil>=5.8.0",
]

if sys.version_info[:2] == (3, 6):
Expand Down
2 changes: 1 addition & 1 deletion socialname/__version__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
__title__ = "socialname"
__version__ = "0.1.0"
__version__ = "0.1.3"
__author__ = "Yusuke Hayashi"
__author_email__ = "yusuke8h@gmail.com"
__license__ = "MIT"
Expand Down

0 comments on commit 1907947

Please # to comment.