Getting tests to work

This commit is contained in:
Cyber MacGeddon 2025-07-23 16:19:57 +01:00
parent 508d09c4cb
commit 1b119570d2
3 changed files with 4 additions and 6 deletions

View file

@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
container:
image: fedora:42
image: python:3.12
steps:
@ -27,10 +27,10 @@ jobs:
- name: Setup environment
run: |
dnf install -y python3.12 make which
alternatives --install /usr/bin/python python /usr/bin/python3.12 1
python -m ensurepip --upgrade
python3.12 -m venv env
apt install -y make
python --version
python3 -m venv env
. env/bin/activate
pip install build wheel
which pip

View file

@ -17,7 +17,6 @@ dependencies = [
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]

View file

@ -19,7 +19,6 @@ dependencies = [
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
]