Skip to content

Commit 59d9a52

Browse files
authored
Add support for the 2025 VW ID. Buzz (#23)
* Add support for 2025 VW ID. Buzz * Package updates
1 parent d5043a7 commit 59d9a52

File tree

4 files changed

+11
-10
lines changed

4 files changed

+11
-10
lines changed

requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
fastapi==0.112.1
2-
google-cloud-error-reporting==1.11.0
3-
httpx[http2]==0.27.0
4-
uvicorn[standard]==0.30.6
1+
fastapi==0.115.6
2+
google-cloud-error-reporting==1.11.1
3+
httpx[http2]==0.28.1
4+
uvicorn[standard]==0.32.1

requirements_dev.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22
-r requirements.txt
33

44
# Tests and linting
5-
Faker==27.4.0
5+
Faker==33.1.0
66
flake8==7.1.1
7-
flake8-bugbear==24.8.19
7+
flake8-bugbear==24.10.31
88
ipykernel==6.29.5
9-
pre-commit==3.8.0
10-
pytest==8.3.2
11-
vcrpy==6.0.1
9+
pre_commit==4.0.1
10+
pytest==8.3.4
11+
vcrpy==6.0.2

src/libs/common_query_params.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ class CommonInventoryQueryParams:
2020
"^ELECTRIFIED-G80$", # Genesis Electrified G80
2121
"^ELECTRIFIED-GV70$", # Genesis Electrified GV70
2222
"^ID.4$", # VW ID.4
23+
"^ID. Buzz$", # VW ID.BUZZ
2324
"^mache$", # Ford Mustang Mach-E
2425
r"^f-150(%20|\+|\s|\-)lightning", # Ford F-150 Lightning
2526
"^Blazer EV$", # Chevrolet Blazer EV

src/routers/volkswagen.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
from fastapi import APIRouter, Depends, Request
22

33
from src.libs.common_query_params import CommonInventoryQueryParams
4-
from src.libs.responses import error_response, send_response
54
from src.libs.http import AsyncHTTPClient
5+
from src.libs.responses import error_response, send_response
66

77
router = APIRouter(prefix="/api")
88
verify_ssl = False

0 commit comments

Comments
 (0)