File tree Expand file tree Collapse file tree 3 files changed +18
-35
lines changed Expand file tree Collapse file tree 3 files changed +18
-35
lines changed Original file line number Diff line number Diff line change 3333 apt-get -y install curl
3434 pip install --upgrade pip
3535 pip install poetry
36- poetry install
36+ poetry install --no-ansi
3737
3838 - run :
3939 name : Black Formatting Check # Only validation, without re-formatting
@@ -42,15 +42,15 @@ jobs:
4242 - run :
4343 name : Flake8 Lint Check # Uses setup.cfg for configuration
4444 command : |
45- poetry run flake8 launch --count --statistics --exclude launch/clientlib,launch/api_client
45+ poetry run flake8 launch --count --statistics --exclude launch/clientlib
4646 - run :
4747 name : Pylint Lint Check # Uses .pylintrc for configuration
4848 command : |
49- poetry run pylint launch --ignore=clientlib,api_client
49+ poetry run pylint launch --ignore=clientlib
5050 - run :
5151 name : MyPy typing check
5252 command : |
53- poetry run mypy --ignore-missing-imports launch --exclude launch/clientlib --exclude launch/api_client
53+ poetry run mypy --ignore-missing-imports launch --exclude launch/clientlib
5454 - run :
5555 name : Isort Import Formatting Check # Only validation, without re-formatting
5656 command : |
Original file line number Diff line number Diff line change @@ -21,13 +21,12 @@ exclude = '''
2121
2222[tool .mypy ]
2323exclude = [
24- ' ^launch/clientlib/' ,
25- ' ^launch/api_client/' ,
24+ ' ^launch/clientlib/'
2625]
2726
2827[tool .poetry ]
2928name = " scale-launch"
30- version = " 1.0.0 "
29+ version = " 0.3.3 "
3130description = " The official Python client library for Launch, the Data Platform for AI"
3231authors = [" Your Name <you@example.com>" ]
3332readme = " README.md"
@@ -44,8 +43,7 @@ rich = "^12.0.0"
4443deprecation = " ^2.1.0"
4544pyyaml = " >=5.3.1,<7.0.0"
4645typing-extensions = " ^4.1.1"
47- python-dateutil = " >=2.5.3"
48- urllib3 = " >=1.25.3"
46+ click = " ^8.0.0"
4947
5048[tool .poetry .dev-dependencies ]
5149black = " ^22.1.0"
You can’t perform that action at this time.
0 commit comments