Skip to content

Commit acfa4b8

Browse files
Donatas-Ldonatas
andauthored
Version 4.0.0 (#171)
* Version 4 (#170) * Migrating to AsyncClient * Expanding AsyncClient * Fix tests * fmt * fmt * fmt * ignore=E203 * fmt * Fixing benchmark scripts * Ignore proto type * start unit-test on any pull-request * Ingore proto type * Revert proto files changes * Docs for distance-map * Refactor + documentation * More documentation * Expanded documentation * docustring * Bump protobuf dependency * Docs for responses * Tweaking docs * newline * routes_test more searches * Fixing unit tests * Documentation * Documentation * fmt --------- Co-authored-by: donatas <[email protected]> * Client (#172) * Add Client * Add dependencies * Re-work of error types * Specific errors * Fix types * Upper bound on RPM limits * Remove retry logic * fmt * Cleanup * Context managers for clients * Tenacity in-code retry logic for 5** status codes * Rework README.md * Fix retry attempts logic * Update retry_test * Close session on retry_test * Bump Python version --------- Co-authored-by: donatas <[email protected]> * Add examples (#173) * Add examples * Consistent naming * Close session * Close connections in benchmarks * return -> exit(1) --------- Co-authored-by: donatas <[email protected]> * whitespace --------- Co-authored-by: donatas <[email protected]>
1 parent e25cb67 commit acfa4b8

File tree

113 files changed

+8885
-6794
lines changed

Some content is hidden

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

113 files changed

+8885
-6794
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ on:
77
push:
88
branches: [master]
99
pull_request:
10-
branches: [master, new_sdk_version]
1110

1211
jobs:
1312
build:
@@ -17,11 +16,11 @@ jobs:
1716
max-parallel: 1
1817
matrix:
1918
python-version:
20-
- "3.8"
2119
- "3.9"
2220
- "3.10"
2321
- "3.11"
2422
- "3.12"
23+
- "3.13"
2524
steps:
2625
- uses: actions/checkout@v3
2726
with:
@@ -37,7 +36,7 @@ jobs:
3736
pip install -e ".[test]"
3837
- name: Lint with flake8
3938
run: |
40-
flake8 --max-line-length=127
39+
flake8 --max-line-length=127 --ignore=E203
4140
- name: Formatting check with black
4241
run: |
4342
black . --check --diff

0 commit comments

Comments
 (0)