Skip to content

Commit a870b6c

Browse files
authored
IGNITE-19817 Add configuration for read-the-docs (#63)
1 parent 1e485b5 commit a870b6c

2 files changed

Lines changed: 36 additions & 1 deletion

File tree

.github/workflows/pr_check.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ on:
2222
- 'pyignite-*'
2323

2424
env:
25-
IGNITE_VERSION: 2.14.0
25+
IGNITE_VERSION: 2.15.0
2626
IGNITE_HOME: /opt/ignite
2727

2828
jobs:

.readthedocs.yaml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one or more
2+
# contributor license agreements. See the NOTICE file distributed with
3+
# this work for additional information regarding copyright ownership.
4+
# The ASF licenses this file to You under the Apache License, Version 2.0
5+
# (the "License"); you may not use this file except in compliance with
6+
# the License. You may obtain a copy of the License at
7+
#
8+
# http://www.apache.org/licenses/LICENSE-2.0
9+
#
10+
# Unless required by applicable law or agreed to in writing, software
11+
# distributed under the License is distributed on an "AS IS" BASIS,
12+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
# See the License for the specific language governing permissions and
14+
# limitations under the License.
15+
16+
# .readthedocs.yaml
17+
# Read the Docs configuration file
18+
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
19+
20+
# Required
21+
version: 2
22+
23+
# Set the version of Python and other tools you might need
24+
build:
25+
os: ubuntu-22.04
26+
tools:
27+
python: "3.11"
28+
29+
# Build documentation in the docs/ directory with Sphinx
30+
sphinx:
31+
configuration: docs/conf.py
32+
33+
python:
34+
install:
35+
- requirements: requirements/docs.txt

0 commit comments

Comments
 (0)