Skip to content
This repository was archived by the owner on Jan 8, 2026. It is now read-only.
Merged
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
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.209.6/containers/python-3/.devcontainer/base.Dockerfile

# [Choice] Python version (use -bullseye variants on local arm64/Apple Silicon): 3, 3.10, 3.9, 3.8, 3.7, 3.6, 3-bullseye, 3.10-bullseye, 3.9-bullseye, 3.8-bullseye, 3.7-bullseye, 3.6-bullseye, 3-buster, 3.10-buster, 3.9-buster, 3.8-buster, 3.7-buster, 3.6-buster
ARG VARIANT="3.12"
ARG VARIANT="3.13"
FROM alpine:latest AS dependencies

USER root
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// Update 'VARIANT' to pick a Python version: 3, 3.10, 3.9, 3.8, 3.7, 3.6
// Append -bullseye or -buster to pin to an OS version.
// Use -bullseye variants on local on arm64/Apple Silicon.
"VARIANT": "3.12",
"VARIANT": "3.13",
// Options
"NODE_VERSION": "none"
}
Expand Down
2 changes: 1 addition & 1 deletion grizzly_cli/static/Containerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG GRIZZLY_EXTRA=base
ARG GRIZZLY_INSTALL_TYPE=remote

FROM python:3.12-slim AS base
FROM python:3.13.3-slim AS base

ENV DEBIAN_FRONTEND=noninteractive

Expand Down
11 changes: 5 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,12 @@ dependencies = [
"chardet ==5.2.0",
"tomli ==2.0.1",
"pyotp ==2.9.0",
"PyYAML ==6.0.1",
"PyYAML ==6.0.2",
"progress ==1.6",
"jinja2-simple-tags ==0.6.1",
"azure-core ==1.30.1",
"azure-keyvault-secrets ==4.8.0",
"azure-identity ==1.17.1"
"azure-core ==1.34.0",
"azure-keyvault-secrets ==4.10.0",
"azure-identity ==1.23.1"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
Expand Down Expand Up @@ -70,9 +70,8 @@ dev = [
"requests-mock ==1.12.1",
"pip-licenses ==4.3.4",
"pytablewriter ==1.2.0",
"PyYAML ==6.0.1",
"line-profiler ==4.1.2",
"gevent ==24.2.1",
"gevent>=24.10.1,<26.0.0",
"flask ==3.0.3",
"types-requests >=2.27.13,<3.0.0",
"setuptools-scm==8.1.0",
Expand Down
Loading