Raffson be634ab961
Revert "Update to Python3.11"
This reverts commit d6ba45a42be3717370748fa56484ebef69f4bf52.
2023-10-15 20:53:03 +02:00

22 lines
498 B
YAML

name: Liberation Python set-up
description: Sets up the Liberation Python environment.
runs:
using: composite
steps:
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.10"
cache: pip
- name: Install environment
shell: powershell
run: |
python -m venv ./venv
- name: Install dependencies
shell: powershell
run: |
./venv/scripts/activate
python -m pip install -r requirements.txt