Skip to content

Commit d07059f

Browse files
Merge branch 'release/2.0.0'
2 parents ecbaaa1 + bf2609e commit d07059f

File tree

159 files changed

+11125
-4346
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

159 files changed

+11125
-4346
lines changed

.devcontainer/devcontainer.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+
// README at: https://github.com/devcontainers/templates/tree/main/src/python
3+
{
4+
"name": "Python 3",
5+
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6+
"image": "mcr.microsoft.com/devcontainers/base:dev-ubuntu24.04",
7+
8+
// Features to add to the dev container. More info: https://containers.dev/features.
9+
// "features": {},
10+
11+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
12+
// "forwardPorts": [],
13+
14+
// Install just and uv after container creation
15+
"postCreateCommand": "bash .devcontainer/install.sh",
16+
17+
// Configure tool-specific properties.
18+
"customizations": {
19+
"vscode": {
20+
"extensions": [
21+
"ms-python.python",
22+
"ms-python.black-formatter",
23+
"ms-python.isort",
24+
"ms-python.mypy-type-checker",
25+
"ms-python.vscode-pylance",
26+
"VisualStudioExptTeam.vscodeintellicode"
27+
]
28+
}
29+
}
30+
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
31+
// "remoteUser": "root"
32+
}

.devcontainer/install.sh

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/usr/bin/env bash
2+
set -e
3+
4+
# Install just
5+
sudo apt-get update
6+
sudo apt-get install -y just
7+
8+
# Install uv
9+
curl -LsSf https://astral.sh/uv/install.sh | sh
10+
11+
# Install mypy using uv
12+
uv tool install mypy

.github/FUNDING.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: [GrahamDumpleton]

0 commit comments

Comments
 (0)