Skip to content

Commit df2c096

Browse files
committed
change 64 bit versions to build with python 3.13
1 parent 3397c3f commit df2c096

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/automaticRelease.yaml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ jobs:
9696
- name: Set up Python
9797
uses: actions/setup-python@v5
9898
with:
99-
python-version: 3.11
99+
python-version: 3.13
100100
architecture: 'x64'
101101
- name: Build Rust Library
102102
run: |
@@ -109,7 +109,7 @@ jobs:
109109
uses: thedoctor0/zip-release@0.7.5
110110
with:
111111
type: 'zip'
112-
filename: '../libmathcat_py-64-3.11-win.zip'
112+
filename: '../libmathcat_py-64-3.13-win.zip'
113113
directory: 'Example'
114114
path: 'libmathcat_py.pyd'
115115
- name: test the build
@@ -119,8 +119,8 @@ jobs:
119119
- name: Upload 64 bit pyd file
120120
uses: actions/upload-artifact@v4
121121
with:
122-
name: libmathcat_py-64-3.11-win.zip
123-
path: libmathcat_py-64-3.11-win.zip
122+
name: libmathcat_py-64-3.13-win.zip
123+
path: libmathcat_py-64-3.13-win.zip
124124
compression-level: 0
125125
retention-days: 1
126126

@@ -133,7 +133,7 @@ jobs:
133133
- name: Set up Python
134134
uses: actions/setup-python@v5
135135
with:
136-
python-version: 3.11
136+
python-version: 3.13
137137
architecture: 'x64'
138138
- name: Build Rust Library
139139
run: |
@@ -151,14 +151,14 @@ jobs:
151151
uses: thedoctor0/zip-release@0.7.5
152152
with:
153153
type: 'zip'
154-
filename: '../libmathcat_py-64-3.11-linux.zip'
154+
filename: '../libmathcat_py-64-3.13-linux.zip'
155155
directory: 'Example'
156156
path: 'libmathcat_py.so'
157157
- name: Upload 64 bit pyd file
158158
uses: actions/upload-artifact@v4
159159
with:
160-
name: libmathcat_py-64-3.11-linux.zip
161-
path: libmathcat_py-64-3.11-linux.zip
160+
name: libmathcat_py-64-3.13-linux.zip
161+
path: libmathcat_py-64-3.13-linux.zip
162162
compression-level: 0
163163
retention-days: 1
164164

@@ -231,11 +231,11 @@ jobs:
231231
- name: Download 64 bit build
232232
uses: actions/download-artifact@v4
233233
with:
234-
name: libmathcat_py-64-3.11-win.zip
234+
name: libmathcat_py-64-3.13-win.zip
235235
- name: Download 64 bit linux build
236236
uses: actions/download-artifact@v4
237237
with:
238-
name: libmathcat_py-64-3.11-linux.zip
238+
name: libmathcat_py-64-3.13-linux.zip
239239
- name: download the addon
240240
uses: actions/download-artifact@v4
241241
with:
@@ -251,6 +251,6 @@ jobs:
251251
files: |
252252
*.nvda-addon
253253
libmathcat_py-32-3.11-win.zip
254-
libmathcat_py-64-3.11-win.zip
255-
libmathcat_py-64-3.11-linux.zip
254+
libmathcat_py-64-3.13-win.zip
255+
libmathcat_py-64-3.13-linux.zip
256256
Rules.zip

0 commit comments

Comments
 (0)