Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
python
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
eazydevelop-devcontainer-temp
python
Commits
82e998e3
Commit
82e998e3
authored
Aug 21, 2025
by
xiezhi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
multi version support
parent
c1dfb1ed
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
148 additions
and
0 deletions
+148
-0
devcontainer-python-3.10.json
.devcontainer/devcontainer-python-3.10.json
+49
-0
devcontainer-python-3.11.json
.devcontainer/devcontainer-python-3.11.json
+1
-0
devcontainer-python-3.12.json
.devcontainer/devcontainer-python-3.12.json
+49
-0
devcontainer-python-3.9.json
.devcontainer/devcontainer-python-3.9.json
+49
-0
No files found.
.devcontainer/devcontainer-python-3.10.json
0 → 100644
View file @
82e998e3
{
"name"
:
"Python 3.10 Development Environment"
,
"image"
:
"hb.eazytec-cloud.com/eazytec/eazydevelop-base:ubuntu"
,
"features"
:
{
"ghcr.io/devcontainers/features/python:1"
:
{
"version"
:
"3.10"
,
"installTools"
:
true
,
"installPipx"
:
true
,
"installPipxGlobalPackages"
:
[
"black"
,
"flake8"
,
"mypy"
,
"pytest"
]
},
"ghcr.io/devcontainers/features/common-utils:2"
:
{
"installZsh"
:
true
,
"configureZshAsDefaultShell"
:
true
,
"installOhMyZsh"
:
true
,
"upgradePackages"
:
true
}
},
"customizations"
:
{
"vscode"
:
{
"extensions"
:
[
"ms-python.python"
,
"ms-python.black-formatter"
,
"ms-python.flake8"
,
"ms-python.mypy-type-checker"
,
"ms-python.pylint"
,
"ms-python.pytest-adapter"
,
"ms-python.vscode-pylance"
],
"settings"
:
{
"python.defaultInterpreterPath"
:
"/usr/local/bin/python"
,
"python.configuration.updateBuildConfiguration"
:
"automatic"
,
"python.linting.enabled"
:
true
,
"python.linting.flake8Enabled"
:
true
,
"python.linting.mypyEnabled"
:
true
,
"python.formatting.provider"
:
"black"
,
"python.testing.pytestEnabled"
:
true
,
"python.testing.unittestEnabled"
:
false
,
"python.testing.nosetestsEnabled"
:
false
}
}
},
"postCreateCommand"
:
"python --version && pip --version && python /workspaces/python/hello.py"
,
"remoteUser"
:
"vscode"
}
.devcontainer/devcontainer.json
→
.devcontainer/devcontainer
-python-3.11
.json
View file @
82e998e3
...
@@ -33,6 +33,7 @@
...
@@ -33,6 +33,7 @@
],
],
"settings"
:
{
"settings"
:
{
"python.defaultInterpreterPath"
:
"/usr/local/bin/python"
,
"python.defaultInterpreterPath"
:
"/usr/local/bin/python"
,
"python.configuration.updateBuildConfiguration"
:
"automatic"
,
"python.linting.enabled"
:
true
,
"python.linting.enabled"
:
true
,
"python.linting.flake8Enabled"
:
true
,
"python.linting.flake8Enabled"
:
true
,
"python.linting.mypyEnabled"
:
true
,
"python.linting.mypyEnabled"
:
true
,
...
...
.devcontainer/devcontainer-python-3.12.json
0 → 100644
View file @
82e998e3
{
"name"
:
"Python 3.12 Development Environment"
,
"image"
:
"hb.eazytec-cloud.com/eazytec/eazydevelop-base:ubuntu"
,
"features"
:
{
"ghcr.io/devcontainers/features/python:1"
:
{
"version"
:
"3.12"
,
"installTools"
:
true
,
"installPipx"
:
true
,
"installPipxGlobalPackages"
:
[
"black"
,
"flake8"
,
"mypy"
,
"pytest"
]
},
"ghcr.io/devcontainers/features/common-utils:2"
:
{
"installZsh"
:
true
,
"configureZshAsDefaultShell"
:
true
,
"installOhMyZsh"
:
true
,
"upgradePackages"
:
true
}
},
"customizations"
:
{
"vscode"
:
{
"extensions"
:
[
"ms-python.python"
,
"ms-python.black-formatter"
,
"ms-python.flake8"
,
"ms-python.mypy-type-checker"
,
"ms-python.pylint"
,
"ms-python.pytest-adapter"
,
"ms-python.vscode-pylance"
],
"settings"
:
{
"python.defaultInterpreterPath"
:
"/usr/local/bin/python"
,
"python.configuration.updateBuildConfiguration"
:
"automatic"
,
"python.linting.enabled"
:
true
,
"python.linting.flake8Enabled"
:
true
,
"python.linting.mypyEnabled"
:
true
,
"python.formatting.provider"
:
"black"
,
"python.testing.pytestEnabled"
:
true
,
"python.testing.unittestEnabled"
:
false
,
"python.testing.nosetestsEnabled"
:
false
}
}
},
"postCreateCommand"
:
"python --version && pip --version && python /workspaces/python/hello.py"
,
"remoteUser"
:
"vscode"
}
.devcontainer/devcontainer-python-3.9.json
0 → 100644
View file @
82e998e3
{
"name"
:
"Python 3.9 Development Environment"
,
"image"
:
"hb.eazytec-cloud.com/eazytec/eazydevelop-base:ubuntu"
,
"features"
:
{
"ghcr.io/devcontainers/features/python:1"
:
{
"version"
:
"3.9"
,
"installTools"
:
true
,
"installPipx"
:
true
,
"installPipxGlobalPackages"
:
[
"black"
,
"flake8"
,
"mypy"
,
"pytest"
]
},
"ghcr.io/devcontainers/features/common-utils:2"
:
{
"installZsh"
:
true
,
"configureZshAsDefaultShell"
:
true
,
"installOhMyZsh"
:
true
,
"upgradePackages"
:
true
}
},
"customizations"
:
{
"vscode"
:
{
"extensions"
:
[
"ms-python.python"
,
"ms-python.black-formatter"
,
"ms-python.flake8"
,
"ms-python.mypy-type-checker"
,
"ms-python.pylint"
,
"ms-python.pytest-adapter"
,
"ms-python.vscode-pylance"
],
"settings"
:
{
"python.defaultInterpreterPath"
:
"/usr/local/bin/python"
,
"python.configuration.updateBuildConfiguration"
:
"automatic"
,
"python.linting.enabled"
:
true
,
"python.linting.flake8Enabled"
:
true
,
"python.linting.mypyEnabled"
:
true
,
"python.formatting.provider"
:
"black"
,
"python.testing.pytestEnabled"
:
true
,
"python.testing.unittestEnabled"
:
false
,
"python.testing.nosetestsEnabled"
:
false
}
}
},
"postCreateCommand"
:
"python --version && pip --version && python /workspaces/python/hello.py"
,
"remoteUser"
:
"vscode"
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment