Skip to content

Commit

Permalink
chore: update devcontainer
Browse files Browse the repository at this point in the history
  • Loading branch information
noahnu committed Feb 3, 2024
1 parent 5af385b commit 9568d76
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.224.3/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.11-bullseye"
FROM mcr.microsoft.com/vscode/devcontainers/python:0-${VARIANT}
ARG VARIANT="3.12-bookworm"
FROM mcr.microsoft.com/devcontainers/python:${VARIANT}

# [Choice] Node.js version: none, lts/*, 16, 14, 12, 10
ARG NODE_VERSION="none"
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-bullseye",
"VARIANT": "3.12-bookworm",
// Options
"NODE_VERSION": "none"
}
Expand Down

1 comment on commit 9568d76

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmark

Benchmark suite Current: 9568d76 Previous: 950997e Ratio
benchmarks/test_1000x.py::test_1000x_reads 0.7025897874091912 iter/sec (stddev: 0.059491120667016846) 0.7347531569318875 iter/sec (stddev: 0.06571901349220487) 1.05
benchmarks/test_1000x.py::test_1000x_writes 0.6406603164720147 iter/sec (stddev: 0.24935714370996603) 0.645318639823697 iter/sec (stddev: 0.2275165743148998) 1.01
benchmarks/test_standard.py::test_standard 0.6692408834322009 iter/sec (stddev: 0.03551931315840612) 0.6785496231805689 iter/sec (stddev: 0.0428997086269188) 1.01

This comment was automatically generated by workflow using github-action-benchmark.

Please sign in to comment.