[UPD] python version 3.7.12 to 3.7.16

This commit is contained in:
Mathieu Benoit 2022-12-21 02:52:32 -05:00
parent dc65e7f496
commit 11e14e3927
9 changed files with 11 additions and 10 deletions

View file

@ -1 +1 @@
3.7.12 3.7.16

View file

@ -13,6 +13,7 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## Changed ## Changed
- Update to Python==3.7.16
- Update poetry==1.3.1 - Update poetry==1.3.1
## [1.4.0] - 2022-10-05 ## [1.4.0] - 2022-10-05

View file

@ -211,8 +211,8 @@ Read GIT_REPO.md to understand how changer version.
## Python version ## Python version
Your actual version is in file .python-version. Use script `./script/version/change_python_version.sh 3.7.12` to change Your actual version is in file .python-version. Use script `./script/version/change_python_version.sh 3.7.16` to change
to version 3.7.12 . to version 3.7.16 .
Run the installation, `make install_dev`. Run the installation, `make install_dev`.

View file

@ -1,4 +1,4 @@
FROM python:3.7.12-slim-buster FROM python:3.7.16-slim-buster
MAINTAINER TechnoLibre <docker@technolibre.ca> MAINTAINER TechnoLibre <docker@technolibre.ca>
SHELL ["/bin/bash", "-xo", "pipefail", "-c"] SHELL ["/bin/bash", "-xo", "pipefail", "-c"]

View file

@ -1 +1 @@
3.7.12 3.7.16

View file

@ -18,7 +18,7 @@ license = "AGPL-3.0-or-later"
authors = [ "Mathieu Benoit <mathben@technolibre.ca>",] authors = [ "Mathieu Benoit <mathben@technolibre.ca>",]
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.7.12" python = "^3.7.16"
Babel = "2.9.1" Babel = "2.9.1"
Cerberus = "^1.3.4" Cerberus = "^1.3.4"
Cython = "^0.29.32" Cython = "^0.29.32"

View file

@ -37,8 +37,8 @@ sudo npm install -g rtlcss
sudo npm install -g less sudo npm install -g less
sudo npm install -g prettier sudo npm install -g prettier
sudo npm install -g prettier @prettier/plugin-xml sudo npm install -g prettier @prettier/plugin-xml
yes n|pyenv install 3.7.12 yes n|pyenv install 3.7.16
pyenv local 3.7.12 pyenv local 3.7.16
echo 'export PATH="/usr/local/opt/openssl@1.1/bin:$PATH"' >> ~/.zshrc echo 'export PATH="/usr/local/opt/openssl@1.1/bin:$PATH"' >> ~/.zshrc

View file

@ -25,7 +25,7 @@ if [[ ! -d "./addons/addons" ]]; then
fi fi
PYENV_PATH=~/.pyenv PYENV_PATH=~/.pyenv
PYTHON_VERSION=3.7.12 PYTHON_VERSION=3.7.16
PYENV_VERSION_PATH=${PYENV_PATH}/versions/${PYTHON_VERSION} PYENV_VERSION_PATH=${PYENV_PATH}/versions/${PYTHON_VERSION}
PYTHON_EXEC=${PYENV_VERSION_PATH}/bin/python PYTHON_EXEC=${PYENV_VERSION_PATH}/bin/python
VENV_PATH=./.venv VENV_PATH=./.venv

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
# $1 new version version, like 3.7.12 # $1 new version version, like 3.7.16
input=".python-version" input=".python-version"
while IFS= read -r line while IFS= read -r line