Skip to content

Commit

Permalink
Relaxed dependency version of typing-extensions to >= 3.10. (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
xneg authored Sep 19, 2023
1 parent f1b4dc8 commit 946efe0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ check: # Run formatters and linters
@echo "Running checkers..."

@echo "\n1. Run $(GREEN_ITALIC)isort$(DEFAULT) to order imports."
$(PYTHON) -m isort .
$(PYTHON) -m isort --profile black .

@echo "\n2. Run $(GREEN_ITALIC)black$(DEFAULT) to format code."
$(PYTHON) -m black .
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@
REQUIREMENTS = [
"azure-kusto-data==3.*",
"sqlalchemy==1.4.*",
"typing-extensions~=3.10",
"typing-extensions>=3.10",
]
EXTRAS = {
"dev": [
"black>=21.12b0",
"isort>=5.10.1",
"mypy>=0.9.30",
"pylint>=2.12.2",
"mypy==0.971",
"pylint==2.15.0",
"pytest>=6.2.5",
"python-dotenv>=0.19.2",
]
Expand Down

0 comments on commit 946efe0

Please sign in to comment.