Skip to content

Commit

Permalink
Add support for the 2025 VW ID. Buzz (#23)
Browse files Browse the repository at this point in the history
* Add support for 2025 VW ID. Buzz

* Package updates
  • Loading branch information
Ben-Chapman authored Dec 8, 2024
1 parent d5043a7 commit 59d9a52
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
fastapi==0.112.1
google-cloud-error-reporting==1.11.0
httpx[http2]==0.27.0
uvicorn[standard]==0.30.6
fastapi==0.115.6
google-cloud-error-reporting==1.11.1
httpx[http2]==0.28.1
uvicorn[standard]==0.32.1
10 changes: 5 additions & 5 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
-r requirements.txt

# Tests and linting
Faker==27.4.0
Faker==33.1.0
flake8==7.1.1
flake8-bugbear==24.8.19
flake8-bugbear==24.10.31
ipykernel==6.29.5
pre-commit==3.8.0
pytest==8.3.2
vcrpy==6.0.1
pre_commit==4.0.1
pytest==8.3.4
vcrpy==6.0.2
1 change: 1 addition & 0 deletions src/libs/common_query_params.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ class CommonInventoryQueryParams:
"^ELECTRIFIED-G80$", # Genesis Electrified G80
"^ELECTRIFIED-GV70$", # Genesis Electrified GV70
"^ID.4$", # VW ID.4
"^ID. Buzz$", # VW ID.BUZZ
"^mache$", # Ford Mustang Mach-E
r"^f-150(%20|\+|\s|\-)lightning", # Ford F-150 Lightning
"^Blazer EV$", # Chevrolet Blazer EV
Expand Down
2 changes: 1 addition & 1 deletion src/routers/volkswagen.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
from fastapi import APIRouter, Depends, Request

from src.libs.common_query_params import CommonInventoryQueryParams
from src.libs.responses import error_response, send_response
from src.libs.http import AsyncHTTPClient
from src.libs.responses import error_response, send_response

router = APIRouter(prefix="/api")
verify_ssl = False
Expand Down

0 comments on commit 59d9a52

Please sign in to comment.