mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-04-22 03:00:22 -04:00
* 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.
29 lines
572 B
YAML
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
|