mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-25 05:00:22 +00:00
60e8c6a6c7
* Migrate to pyproject.toml * Add .venv to .gitignore * Exclude tests in MANIFEST.in * Move pytest into pyproject.toml * Remove unused coveralls * Restore requirements_dev.txt Needed for CI venv cache and readthedocs. * Exclude .venv for flake8 * Bump minimum Python version to 3.9
19 lines
238 B
YAML
19 lines
238 B
YAML
# .readthedocs.yml
|
|
|
|
version: 2
|
|
|
|
build:
|
|
os: ubuntu-22.04
|
|
tools:
|
|
python: "3.9"
|
|
|
|
sphinx:
|
|
configuration: docs/conf.py
|
|
|
|
formats: all
|
|
|
|
python:
|
|
install:
|
|
- requirements: requirements_dev.txt
|
|
- method: pip
|
|
path: .
|