Skip to content

Commit 6013500

Browse files
committed
Merge branch 'future-2025-05' into develop
2 parents 41c75ac + 4486294 commit 6013500

11 files changed

Lines changed: 21 additions & 21 deletions

File tree

.github/workflows/release_linux.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
name: Setup Python
1818
uses: actions/setup-python@v5
1919
with:
20-
python-version: '3.11'
20+
python-version: '3.12'
2121
architecture: x64
2222
-
2323
name: APT Install

.github/workflows/release_win.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
jobs:
88
build-windows:
9-
runs-on: windows-2019
9+
runs-on: windows-2022
1010
steps:
1111
-
1212
name: Checkout
@@ -17,7 +17,7 @@ jobs:
1717
name: Setup Python
1818
uses: actions/setup-python@v5
1919
with:
20-
python-version: '3.11'
20+
python-version: '3.12'
2121
architecture: x64
2222
-
2323
name: Pip Install

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,8 +86,8 @@ other-future = [
8686
other-normal = [
8787
]
8888
qt6-new = [
89-
"pyside6==6.7.3",
90-
"qtpy==2.4.1",
89+
"pyside6==6.8.2.1",
90+
"qtpy==2.4.3",
9191
]
9292
qt6-new-pyqt6 = [
9393
"pyqt6",
@@ -99,6 +99,6 @@ qt6-older = [
9999
"qtpy==2.3.1",
100100
]
101101
qt6-test = [
102-
"pyside6==6.8.2.1",
102+
"pyside6==6.9.0",
103103
"qtpy==2.4.3",
104104
]

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,5 @@ twisted[tls,http2]>=20.3.0
2929
opencv-python-headless==4.10.0.84
3030
mpv==1.0.7
3131

32-
QtPy==2.4.1
33-
PySide6==6.7.3
32+
QtPy==2.4.3
33+
PySide6==6.8.2.1

setup_venv.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ IF EXIST "%venv_location%\" (
8888
:questions
8989

9090
ECHO --------
91-
ECHO Users on older Windows need the advanced install. Python 3.13 will need the advanced install for newer '(t)est' Qt.
91+
ECHO Users on older Windows need the advanced install.
9292
ECHO:
9393
ECHO Your Python version is:
9494
%python_bin% --version
@@ -128,7 +128,7 @@ ECHO - For Python 3.11, your earliest available version is 6.4.0.1
128128
ECHO - For Python 3.12, your earliest available version is 6.6.0
129129
ECHO - For Python 3.13, your earliest available version is 6.8.0.2
130130
SET /P qt_custom_pyside6="Version: "
131-
SET /P qt_custom_qtpy="Enter the exact qtpy version you want (probably '2.4.1'; if older try '2.3.1'): "
131+
SET /P qt_custom_qtpy="Enter the exact qtpy version you want (probably '2.4.3'; if older try '2.3.1'): "
132132

133133
:question_qt_custom_done
134134
:question_qt_advanced_done

setup_venv.command

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ if [ -d "venv" ]; then
5050
fi
5151

5252
echo "--------"
53-
echo "If your macOS is old (Python 3.9), do the advanced install. Python 3.13 will need the advanced install for newer '(t)est' Qt."
53+
echo "If your macOS is old (Python 3.9), do the advanced install."
5454
echo
5555
echo "Your Python version is:"
5656
$py_command --version
@@ -94,7 +94,7 @@ elif [ "$install_type" = "a" ]; then
9494
echo "- For Python 3.13, your earliest available version is 6.8.0.2"
9595
echo "Version: "
9696
read -r qt_custom_pyside6
97-
echo "Enter the exact qtpy version you want (probably '2.4.1'; if older try '2.3.1'): "
97+
echo "Enter the exact qtpy version you want (probably '2.4.3'; if older try '2.3.1'): "
9898
read -r qt_custom_qtpy
9999
fi
100100

setup_venv.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ if [ -d "venv" ]; then
5050
fi
5151

5252
echo "--------"
53-
echo "Users on older OSes need the advanced install. Python 3.13 will need the advanced install for newer '(t)est' Qt."
53+
echo "Users on older OSes need the advanced install."
5454
echo
5555
echo "Your Python version is:"
5656
$py_command --version
@@ -94,7 +94,7 @@ elif [ "$install_type" = "a" ]; then
9494
echo "- For Python 3.13, your earliest available version is 6.8.0.2"
9595
echo "Version: "
9696
read -r qt_custom_pyside6
97-
echo "Enter the exact qtpy version you want (probably '2.4.1'; if older try '2.3.1'): "
97+
echo "Enter the exact qtpy version you want (probably '2.4.3'; if older try '2.3.1'): "
9898
read -r qt_custom_qtpy
9999
fi
100100

static/build_files/linux/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ twisted[tls,http2]>=20.3.0
2929
opencv-python-headless==4.10.0.84
3030
mpv==1.0.7
3131

32-
QtPy==2.4.1
33-
PySide6==6.7.3
32+
QtPy==2.4.3
33+
PySide6==6.8.2.1
3434

3535
pyinstaller==6.7
3636
mkdocs-material

static/build_files/windows/requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ twisted[tls,http2]>=20.3.0
2929
opencv-python-headless==4.10.0.84
3030
mpv==1.0.7
3131

32-
QtPy==2.4.1
33-
PySide6==6.7.3
32+
QtPy==2.4.3
33+
PySide6==6.8.2.1
3434

3535
pyinstaller==6.7
3636
mkdocs-material
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
QtPy==2.4.1
2-
PySide6==6.7.3
1+
QtPy==2.4.3
2+
PySide6==6.8.2.1

0 commit comments

Comments
 (0)