10000 fix .readthedocs.yaml, fixes #559 by ThomasWaldmann · Pull Request #560 · msgpack/msgpack-python · GitHub
[go: up one dir, main page]

Skip to content

fix .readthedocs.yaml, fixes #559 #560

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Sep 12, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix .readthedocs.yaml
currently, api docs seem rather empty.

try:

- apt install build-essential (so we have gcc, make, etc.)
- install from requirements.txt
- "make cython"
- "pip install ."
  • Loading branch information
ThomasWaldmann committed Sep 7, 2023
commit 50881cbffcdbdf227002957df123e52762497575
19 changes: 15 additions & 4 deletions .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,20 @@
version: 2

build:
os: ubuntu-22.04
tools:
python: "3.11"
os: ubuntu-22.04
tools:
python: "3.11"
apt_packages:
- build-essential
jobs:
pre_install:
- pip install -r requirements.txt
- make cython

python:
install:
- method: pip
path: .

sphinx:
configuration: docs/conf.py
configuration: docs/conf.py
0