Skip to content

Commit 21c8bf8

Browse files
Fix python version upper limit, add python3-tkinter to Fedora workflow
1 parent fba0a8c commit 21c8bf8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ jobs:
7676
submodules: false
7777
- name: Setup environment
7878
run: |
79-
sudo dnf install -y sdl12-compat python3-wxpython4 xorg-x11-server-Xvfb python3-pip psmisc
79+
sudo dnf install -y sdl12-compat python3-wxpython4 xorg-x11-server-Xvfb python3-pip python3-tkinter psmisc
8080
# sudo dnf downgrade -y mesa* --refresh
8181
git submodule update --init --recursive
8282
pip install -r requirements-dev.txt

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def run(self):
115115
package_dir={'': SOURCE_DIR},
116116
packages=find_packages(SOURCE_DIR),
117117
package_data=PACKAGE_DATA,
118-
python_requires='>=3.8, <=3.13',
118+
python_requires='>=3.8, <3.14',
119119
# Robot Framework package data is not included, but RIDE does not need it.
120120
# Always install everything, since we may be switching between versions
121121
options={'install': {'force': True}},

0 commit comments

Comments
 (0)