1234567891011121314151617181920212223242526272829 |
- version: 2
- build:
- os: ubuntu-22.04
- tools:
- python: "3.11"
- jobs:
- post_create_environment:
- - pip install poetry
- - poetry config virtualenvs.create false
- post_install:
-
-
- - poetry export -f requirements.txt --output requirements.txt --with docs
- - python -m pip install -r requirements.txt
- - python -m pip install .
- - python -m pip list
- sphinx:
- configuration: docs/source/conf.py
|