File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ fix-lint:
1616 isort --lines 120 --recursive --use-parentheses pandas_toolkit setup.py
1717
1818lint :
19- tox lint
19+ tox -e lint
2020
2121test-all : clean-test
2222 tox
Original file line number Diff line number Diff line change 22
33from setuptools import setup
44
5- import pandas_toolkit
5+ from pandas_toolkit import __version__ # type: ignore
66
77_here = os .path .abspath (os .path .dirname (__file__ ))
88
1111
1212setup (
1313 name = "pandas_toolkit" ,
14- version = pandas_toolkit . __version__ ,
14+ version = __version__ ,
1515 description = "A collection of pandas accessors to help with common machine learning related functionality." ,
1616 long_description = long_description ,
1717 long_description_content_type = "text/markdown" ,
You can’t perform that action at this time.
0 commit comments