Skip to content

Commit

Permalink
Merge pull request #25 from leonardbinet/mypy
Browse files Browse the repository at this point in the history
v1.1.2
  • Loading branch information
leonardbinet authored Jul 12, 2021
2 parents 1aaaf1a + c07ace7 commit 1da4680
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
11 changes: 10 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,13 @@ test:

coverage:
-coverage run --source=./lighttree -m pytest
coverage report
coverage report

create_dist:
python setup.py sdist bdist_wheel

test_dist: create_dist
twine upload --skip-existing -r testpypi dist/*

upload_dist:
twine upload --skip-existing dist/*
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from setuptools import setup

__version__ = "1.1.1"
__version__ = "1.1.2"

develop_requires = [
"pre-commit",
Expand All @@ -13,6 +13,7 @@
"coverage",
"pytest",
"mypy",
"twine",
]

setup(
Expand Down

0 comments on commit 1da4680

Please sign in to comment.