Skip to content

Commit fec416a

Browse files
Test pyahocorasick inter-long fix and py3.13
Signed-off-by: Ayan Sinha Mahapatra <ayansmahapatra@gmail.com>
1 parent 38cf1ad commit fec416a

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed

azure-pipelines.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
parameters:
1616
job_name: core_tests
1717
image_name: ubuntu-24.04
18-
python_versions: ['3.10']
18+
python_versions: ['3.13']
1919
test_suites:
2020
misc_and_scancode: |
2121
# cli tests are launched below on all OSes
@@ -123,7 +123,7 @@ jobs:
123123
job_name: ubuntu24_cpython
124124
image_name: ubuntu-24.04
125125
python_architecture: x64
126-
python_versions: ['3.9', '3.10', '3.11', '3.12']
126+
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
127127
test_suites:
128128
all: venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py --reruns 2
129129

@@ -132,15 +132,15 @@ jobs:
132132
job_name: ubuntu22_cpython
133133
image_name: ubuntu-22.04
134134
python_architecture: x64
135-
python_versions: ['3.9', '3.10', '3.11', '3.12']
135+
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
136136
test_suites:
137137
all: venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py --reruns 2
138138

139139
- template: etc/ci/azure-posix.yml
140140
parameters:
141141
job_name: macos14_cpython
142142
image_name: macOS-14
143-
python_versions: ['3.9', '3.10', '3.11', '3.12']
143+
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
144144
python_architecture: x64
145145
test_suites:
146146
all: venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py --reruns 2
@@ -149,7 +149,7 @@ jobs:
149149
parameters:
150150
job_name: macos13_cpython
151151
image_name: macOS-13
152-
python_versions: ['3.9', '3.10', '3.11', '3.12']
152+
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
153153
test_suites:
154154
all: venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py --reruns 2
155155

@@ -167,7 +167,7 @@ jobs:
167167
job_name: win2022_cpython
168168
image_name: windows-2022
169169
python_architecture: x64
170-
python_versions: ['3.9', '3.10', '3.11', '3.12']
170+
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
171171
test_suites:
172172
all: venv\Scripts\pytest -n 2 -vvs tests\scancode\test_cli.py --reruns 2
173173

@@ -184,7 +184,7 @@ jobs:
184184
parameters:
185185
job_name: win2022_cpython_2
186186
image_name: windows-2022
187-
python_versions: ['3.9', '3.10', '3.11', '3.12']
187+
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
188188
python_architecture: x64
189189
test_suites:
190190
all: venv\Scripts\pytest -n 2 -vvs tests\scancode\test_cli.py --reruns 2
@@ -199,7 +199,7 @@ jobs:
199199
parameters:
200200
job_name: ubuntu22_test_all_supported_click_versions
201201
image_name: ubuntu-22.04
202-
python_versions: ['3.9', '3.10', '3.11', '3.12']
202+
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
203203
python_architecture: x64
204204
test_suites:
205205
click_versions: |
@@ -219,47 +219,47 @@ jobs:
219219
parameters:
220220
job_name: ubuntu22_cpython_latest_from_pip
221221
image_name: ubuntu-22.04
222-
python_versions: ['3.9', '3.10', '3.11', '3.12']
222+
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
223223
test_suites:
224224
all: venv/bin/pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[testing] && venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py
225225

226226
- template: etc/ci/azure-posix.yml
227227
parameters:
228228
job_name: ubuntu24_cpython_latest_from_pip
229229
image_name: ubuntu-24.04
230-
python_versions: ['3.9', '3.10', '3.11', '3.12']
230+
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
231231
test_suites:
232232
all: venv/bin/pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[testing] && venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py
233233

234234
- template: etc/ci/azure-posix.yml
235235
parameters:
236236
job_name: macos14_cpython_latest_from_pip
237237
image_name: macos-14
238-
python_versions: ['3.9', '3.10', '3.11', '3.12']
238+
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
239239
test_suites:
240240
all: venv/bin/pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[testing] && venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py
241241

242242
- template: etc/ci/azure-posix.yml
243243
parameters:
244244
job_name: macos13_cpython_latest_from_pip
245245
image_name: macos-13
246-
python_versions: ['3.9', '3.10', '3.11', '3.12']
246+
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
247247
test_suites:
248248
all: venv/bin/pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[testing] && venv/bin/pytest -n 2 -vvs tests/scancode/test_cli.py
249249

250250
- template: etc/ci/azure-win.yml
251251
parameters:
252252
job_name: win2019_cpython_latest_from_pip
253253
image_name: windows-2019
254-
python_versions: ['3.9', '3.10', '3.11', '3.12']
254+
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
255255
test_suites:
256256
all: venv\Scripts\pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[testing] && venv\Scripts\pytest -n 2 -vvs tests\scancode\test_cli.py
257257

258258
- template: etc/ci/azure-win.yml
259259
parameters:
260260
job_name: win2022_cpython_latest_from_pip
261261
image_name: windows-2022
262-
python_versions: ['3.9', '3.10', '3.11', '3.12']
262+
python_versions: ['3.9', '3.10', '3.11', '3.12', '3.13']
263263
test_suites:
264264
all: venv\Scripts\pip install --upgrade-strategy eager --force-reinstall --upgrade -e .[testing] && venv\Scripts\pytest -n 2 -vvs tests\scancode\test_cli.py
265265

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ install_requires =
9999
pluggy >= 1.0.0
100100
plugincode >= 32.0.0
101101
publicsuffix2
102-
pyahocorasick >= 2.0.0
102+
pyahocorasick @ git+https://github.com/WojciechMula/pyahocorasick.git@bfa33e901444475792b86b8d01dc8039d9083ae4
103103
pygmars >= 0.9.0
104104
pygments
105105
pymaven_patch >= 0.2.8

0 commit comments

Comments
 (0)