Merging upstream version 0.18.0.
Signed-off-by: Daniel Baumann <daniel@debian.org>
This commit is contained in:
parent
0453b640a2
commit
129d2ce1fc
118 changed files with 4146 additions and 2087 deletions
23
.devcontainer/postCreateCommand.sh
Executable file
23
.devcontainer/postCreateCommand.sh
Executable file
|
@ -0,0 +1,23 @@
|
|||
#!/bin/sh -x
|
||||
|
||||
brew install asdf
|
||||
source "$(brew --prefix asdf)/libexec/asdf.sh"
|
||||
|
||||
# Install latest python
|
||||
asdf plugin add python
|
||||
asdf install python 3.11.0
|
||||
asdf global python 3.11.0
|
||||
|
||||
# You can easily install other python versions like so:
|
||||
# asdf install python 3.6.15
|
||||
# asdf install python 3.7.15
|
||||
# asdf install python 3.8.15
|
||||
# asdf install python 3.9.15
|
||||
# asdf install python 3.10.8
|
||||
# asdf install python pypy3.9-7.3.9
|
||||
|
||||
# Setup virtualenv, install all dependencies
|
||||
cd /workspaces/gitlint
|
||||
$(asdf which python) -m venv .venv
|
||||
source .venv/bin/activate
|
||||
pip install -r requirements.txt -r test-requirements.txt -r doc-requirements.txt
|
Loading…
Add table
Add a link
Reference in a new issue