Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,24 +28,24 @@ jobs:
- run: npm test
backend-build-and-test:
docker:
- image: python:3.9
- image: python:3.14
steps:
- checkout
- restore_cache:
keys:
# when lock files change, use increasingly general
# patterns to restore cache
- &cache_key # yamllint disable-line rule:line-length
python-3.9-packages-v1-{{ .Branch }}-{{ checksum "requirements.in" }}-{{ checksum "requirements.txt" }}
python-3.14-packages-v1-{{ .Branch }}-{{ checksum "requirements.in" }}-{{ checksum "requirements.txt" }}
# yamllint disable-line rule:line-length
- python-3.9-packages-v1-{{ .Branch }}-{{ checksum "requirements.in" }}-
- python-3.9-packages-v1-{{ .Branch }}-
- python-3.9-packages-v1-main-
- python-3.9-packages-v1-
- python-3.14-packages-v1-{{ .Branch }}-{{ checksum "requirements.in" }}-
- python-3.14-packages-v1-{{ .Branch }}-
- python-3.14-packages-v1-main-
- python-3.14-packages-v1-
- run:
name: Build
command: |
python3.9 -m venv venv/
python3.14 -m venv venv/
venv/bin/pip install pip-tools --constraint requirements.in
venv/bin/pip-sync
- run:
Expand Down
3 changes: 1 addition & 2 deletions etl/glam.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,7 @@ def get_glam_metadata_for_metric(app, metric, ping_name):
return {"glam_unsupported_reason": "Internal Glean metrics are not supported by GLAM."}
elif metric_type not in SUPPORTED_GLAM_METRIC_TYPES:
return {
"glam_unsupported_reason": "Currently GLAM does not support "
f"`{metric_type}` metrics."
"glam_unsupported_reason": f"Currently GLAM does not support `{metric_type}` metrics."
}
elif ping_name != "metrics":
return {
Expand Down
2 changes: 1 addition & 1 deletion netlify.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ command = """
mv storybook-static public/storybook
fi
"""
environment = { PYTHON_VERSION = "3.9" }
environment = { PYTHON_VERSION = "3.14" }
publish = "public"

[context.production]
Expand Down
24 changes: 12 additions & 12 deletions requirements.in
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
click==8.1.7
furl==2.1.3
isort==5.13.2
Jinja2==3.1.3
pip-tools==7.4.1
pytest==8.1.1
click==8.4.2
furl==2.1.4
isort==8.0.1
Jinja2==3.1.6
pip-tools==7.6.0
pytest==9.1.1
pytest-isort==4.0.0
pytest-ruff==0.4.1
requests==2.31.0
pytest-ruff==0.5
requests==2.34.2
stringcase==1.2.0
PyYAML==6.0.1
google-cloud-bigquery==3.25.0
google-cloud-storage==2.16.0
GitPython==3.1.41
PyYAML==6.0.3
google-cloud-bigquery==3.42.3
google-cloud-storage==3.13.0
GitPython==3.1.57
Loading