Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 74ea1de

Browse files
authoredFeb 24, 2025··
Add API V2 support (#97)
1 parent 4de6c13 commit 74ea1de

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+8980
-68
lines changed
 

‎.circleci/config.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version: 2.1
44
jobs:
55
build_test:
66
docker:
7-
- image: cimg/python:3.6
7+
- image: cimg/python:3.8
88
resource_class: small
99
steps:
1010
- checkout # checkout source code to working directory
@@ -17,11 +17,11 @@ jobs:
1717
- run:
1818
name: Black Formatting Check # Only validation, without re-formatting
1919
command: |
20-
black --check -t py36 .
20+
black --check --exclude 'scaleapi/api_client/*' -t py38 .
2121
- run:
2222
name: isort Import Ordering Check # Only validation, without re-formatting
2323
command: |
24-
isort --check-only --profile black .
24+
isort --sg 'scaleapi/api_client/*' --check-only --profile black .
2525
- run:
2626
name: Flake8 Lint Check # Uses setup.cfg for configuration
2727
command: |
@@ -46,7 +46,7 @@ jobs:
4646
twine check --strict dist/*
4747
pypi_publish:
4848
docker:
49-
- image: cimg/python:3.6
49+
- image: cimg/python:3.8
5050
steps:
5151
- checkout # checkout source code to working directory
5252
- run:

‎.openapi-generator-ignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
scaleapi/__init__.py
2+
scaleapi/api_client/v2/models/annotation.py

0 commit comments

Comments
 (0)
Please sign in to comment.