Skip to content

Commit f2c0db8

Browse files
committed
Merge remote-tracking branch 'origin/master' into phil/launch-v1
2 parents 443cb0c + 7bdf37b commit f2c0db8

File tree

3 files changed

+18
-35
lines changed

3 files changed

+18
-35
lines changed

.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
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: |

poetry.lock

Lines changed: 11 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,12 @@ exclude = '''
2121

2222
[tool.mypy]
2323
exclude = [
24-
'^launch/clientlib/',
25-
'^launch/api_client/',
24+
'^launch/clientlib/'
2625
]
2726

2827
[tool.poetry]
2928
name = "scale-launch"
30-
version = "1.0.0"
29+
version = "0.3.3"
3130
description = "The official Python client library for Launch, the Data Platform for AI"
3231
authors = ["Your Name <you@example.com>"]
3332
readme = "README.md"
@@ -44,8 +43,7 @@ rich = "^12.0.0"
4443
deprecation = "^2.1.0"
4544
pyyaml = ">=5.3.1,<7.0.0"
4645
typing-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]
5149
black = "^22.1.0"

0 commit comments

Comments
 (0)