Files
PythonRobotics/.circleci/config.yml
Atsushi Sakai a2c42c3d68 Update Python version to 3.13 across the project (#1208)
* Update Python version to 3.13 across the project

Upgraded the required Python version to 3.13 in configurations, CI workflows, documentation, and environment files. This ensures compatibility with the latest Python release and maintains consistency across all project components.

* Update Python version to 3.13 across the project

Upgraded the required Python version to 3.13 in configurations, CI workflows, documentation, and environment files. This ensures compatibility with the latest Python release and maintains consistency across all project components.
2025-05-01 21:53:12 +09:00

29 lines
572 B
YAML

version: 2.1
orbs:
python: circleci/python@1.4.0
jobs:
build_doc:
docker:
- image: cimg/python:3.13
steps:
- checkout
- run:
name: doc_build
command: |
python --version
python -m venv venv
. venv/bin/activate
pip install -r requirements/requirements.txt
pip install -r docs/doc_requirements.txt
cd docs;make html
- store_artifacts:
path: docs/_build/html/
destination: html
workflows:
main:
jobs:
- build_doc