@@ -19,10 +19,10 @@ jobs:
1919 - name : Checkout Code Repository
2020 uses : actions/checkout@v3
2121
22- - name : Set up Python 3.13
22+ - name : Set up Python 3.14
2323 uses : actions/setup-python@v4
2424 with :
25- python-version : " 3.13 "
25+ python-version : " 3.14 "
2626
2727 # Run all pre-commit hooks on all the files.
2828 # Getting only staged files can be tricky in case a new PR is opened
3636 runs-on : ubuntu-latest
3737 strategy :
3838 matrix :
39- python-version : ["3.11", "3.12", "3.13"]
39+ python-version : ["3.11", "3.12", "3.13", "3.14" ]
4040 defaults :
4141 run :
4242 shell : bash -l {0}
7272 conda list
7373 # Ensure we have the right Python version
7474 python --version
75- # Fix pip issues for Python 3.12+
76- if [[ "${{ matrix.python-version }}" == "3.12" ]] || [[ "${{ matrix.python-version }}" == "3.13" ]]; then
77- python -m ensurepip --upgrade || true
78- python -m pip install --upgrade --force-reinstall pip setuptools wheel
79- fi
8075
8176 - name : Install `zstash` Package
8277 run : |
@@ -121,7 +116,7 @@ jobs:
121116 environment-file : conda/dev.yml
122117 channel-priority : flexible # Changed from strict to flexible
123118 auto-update-conda : true
124- python-version : " 3.13 " # Use stable Python version for docs
119+ python-version : " 3.14 " # Use stable Python version for docs
125120
126121 # sphinx-multiversion allows for version docs.
127122 - name : Build Sphinx Docs
0 commit comments