Skip to content

Commit

Permalink
Upgrade dev version (#200)
Browse files Browse the repository at this point in the history
* autoflake rm 3rd unused import

* upgrade version
  • Loading branch information
kemingy committed Feb 10, 2022
1 parent 301e157 commit d60081f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ publish: package
twine upload dist/*

format:
autoflake --in-place --recursive ${SOURCE_FILES}
autoflake --in-place --recursive --remove-all-unused-imports --ignore-init-module-imports ${SOURCE_FILES}
isort --project=spectree ${SOURCE_FILES}
black ${SOURCE_FILES}

Expand Down
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

setup(
name="spectree",
version="0.7.2",
version="0.7.3",
license="Apache-2.0",
author="Keming Yang",
author_email="kemingy94@gmail.com",
Expand Down Expand Up @@ -46,11 +46,11 @@
"falcon": ["falcon"],
"starlette": ["starlette[full]"],
"dev": [
"pytest>=6",
"flake8>=3.8",
"black>=20.8b1",
"isort>=5.6",
"autoflake>=1.4",
"pytest~=7.0",
"flake8~=3.8",
"black~=22.1",
"isort~=5.6",
"autoflake~=1.4",
],
},
zip_safe=False,
Expand Down

0 comments on commit d60081f

Please sign in to comment.