From eff27956dc670e9667faca2136ce719ad99562f0 Mon Sep 17 00:00:00 2001 From: HelioGuilherme66 Date: Sat, 28 Dec 2024 03:02:44 +0000 Subject: [PATCH] Fix python version upper limit, add python3-tkinter to Fedora workflow --- .github/workflows/linux.yml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index 948283644..221eac0f2 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -76,7 +76,7 @@ jobs: submodules: false - name: Setup environment run: | - sudo dnf install -y sdl12-compat python3-wxpython4 xorg-x11-server-Xvfb python3-pip psmisc + sudo dnf install -y sdl12-compat python3-wxpython4 xorg-x11-server-Xvfb python3-pip python3-tkinter psmisc # sudo dnf downgrade -y mesa* --refresh git submodule update --init --recursive pip install -r requirements-dev.txt diff --git a/setup.py b/setup.py index acfa74b57..081068958 100644 --- a/setup.py +++ b/setup.py @@ -115,7 +115,7 @@ def run(self): package_dir={'': SOURCE_DIR}, packages=find_packages(SOURCE_DIR), package_data=PACKAGE_DATA, - python_requires='>=3.8, <=3.13', + python_requires='>=3.8, <3.14', # Robot Framework package data is not included, but RIDE does not need it. # Always install everything, since we may be switching between versions options={'install': {'force': True}},