Raffson f1eb8f9a87
Revert "Pin python to 3.11.5"
This reverts commit 6bcd8a6910dd6803ca4057432f42dc1e36da6296.
2024-04-13 18:06:47 +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.11"
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