Skip to content

Commit

Permalink
[BUILD] Python version updated to 3.8.12
Browse files Browse the repository at this point in the history
Moved to the latest security release, as porposed
by @barbieri.

* Updated Pipfile, and resulting changes in Pipfile.lock
* Updated buildscript
* Updated README.md

Signed-off-by: Daniel Wilms <Daniel.DW.Wilms@bmw.de>
  • Loading branch information
danielwilms authored and erikbosch committed Jan 11, 2022
1 parent 10eb641 commit 2ffa9d2
Show file tree
Hide file tree
Showing 4 changed files with 88 additions and 61 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/buildcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
# required in `Pipfile`.
curl https://pyenv.run | bash
export PATH="$HOME/.pyenv/bin:$PATH"
pyenv install 3.8.5
pyenv install 3.8.12
- name: Install dependencies
run: |
python -V
Expand Down
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ vss-tools = {editable = true, path = "."}
[dev-packages]

[requires]
python_version = "3.8.5"
python_version = "3.8.12"
139 changes: 83 additions & 56 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ All current tools are based on common Python functionality in the `vspec` folder
## Getting started

### Prerequisites
* Python 3.7 installed
* Python 3.8.12 installed
* If the installation (pip install) is executed behind a (corporate) proxy, the following environments variables must be set: `http_proxy` and `https_proxy` (including authentication e.g., `http://${proxy_username):$(proxy_password)@yourproxy.yourdomain`)
* If you do not run with administration rights, you may need to configure pip target path to write to your user home directory or consider [using the `pipenv` method](#setup-with-pipenv).

Expand Down Expand Up @@ -70,9 +70,9 @@ curl https://pyenv.run | bash # download and install
exec $SHELL # restart your shell using the new $PATH
```

Make sure Python version 3.8.5 is installed:
Make sure Python version 3.8.12 is installed:
```sh
pyenv install 3.8.5 # install the versions required by Pipfile
pyenv install 3.8.12 # install the versions required by Pipfile
```

Install this project and its dependencies in the local `.venv` folder in this project, then use it (`pipenv shell`):
Expand Down

0 comments on commit 2ffa9d2

Please sign in to comment.