Skip to content

Commit

Permalink
CI: start Python 3.13 syntax check
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
bkpoon committed Sep 11, 2024
1 parent ba66eae commit 412052b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .azure-pipelines/syntax.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ jobs:
PYTHON_VERSION: 3.11
python3.12:
PYTHON_VERSION: 3.12
python3.13:
PYTHON_VERSION: 3.13

steps:

Expand All @@ -34,6 +36,15 @@ jobs:
- script: |
conda create -y -c conda-forge -n py$(PYTHON_VERSION) python=$(PYTHON_VERSION) six future scons
displayName: Create conda environment
condition: ne(variables['PYTHON_VERSION'], '3.13')
- script: |
conda create -y -c conda-forge -c conda-forge/label/python_rc -n py$(PYTHON_VERSION) python=$(PYTHON_VERSION) six future setuptools
conda activate py$(PYTHON_VERSION)
cd $(Pipeline.Workspace)/modules
git clone -b 4.8.1 https://github.com/SCons/scons.git
displayName: Create conda environment
condition: eq(variables['PYTHON_VERSION'], '3.13')
- script: |
set -xe
Expand Down

0 comments on commit 412052b

Please sign in to comment.