Skip to content

Commit 4a78029

Browse files
committed
Another
1 parent ff63a02 commit 4a78029

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,16 @@ jobs:
5555
- os: windows-latest
5656
architecture: x86
5757
python-version: 3.13
58+
- os: windows-latest
59+
architecture: x86
60+
python-version: 3.13t
5861
- os: windows-latest
5962
architecture: x86
6063
python-version: 3.14
64+
# pandas doesn't have wheels for 3.13t on Windows x64
65+
- os: windows-latest
66+
architecture: x64
67+
python-version: 3.13t
6168

6269
# These are arm - old versions of Python are not supported
6370
- os: macos-latest
@@ -124,6 +131,7 @@ jobs:
124131
COVERALLS_REPO_TOKEN: ${{ secrets.coveralls }}
125132
COVERALLS_PARALLEL: true
126133
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
134+
PYTHON_GIL: ${{ matrix.python-version == '3.13t' && '0' || '' }}
127135

128136
- name: Upload coverage HTML report
129137
if: always()

dev/py2exe_basic_standalone_check_builder.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33

44
setup(
55
console=['basic_standalone_fluids_check.py'],
6+
packages=[],
7+
py_modules=[],
68
options={
79
'py2exe': {
810
'packages': ['fluids', 'numpy', 'scipy'],

0 commit comments

Comments
 (0)