File tree Expand file tree Collapse file tree 7 files changed +35
-3
lines changed Expand file tree Collapse file tree 7 files changed +35
-3
lines changed Original file line number Diff line number Diff line change 27
27
- ["3.9", "py39"]
28
28
- ["3.10", "py310"]
29
29
- ["3.11", "py311"]
30
- - ["3.12.0-beta.2 ", "py312"]
30
+ - ["3.12.0-rc.3 ", "py312"]
31
31
- ["3.9", "docs"]
32
32
- ["3.9", "coverage"]
33
33
- ["3.9", "py39-datetime"]
Original file line number Diff line number Diff line change 2
2
# https://github.com/zopefoundation/meta/tree/master/config/pure-python
3
3
[meta ]
4
4
template = " pure-python"
5
- commit-id = " 1814282a "
5
+ commit-id = " b21fbbf2 "
6
6
7
7
[python ]
8
8
with-pypy = false
@@ -66,6 +66,7 @@ additional-sources = "tests"
66
66
67
67
[manifest ]
68
68
additional-rules = [
69
+ " include *.yaml" ,
69
70
" recursive-include docs *.ast" ,
70
71
" recursive-include docs *.bat" ,
71
72
" recursive-include docs *.jpg" ,
Original file line number Diff line number Diff line change
1
+ # Generated from:
2
+ # https://github.com/zopefoundation/meta/tree/master/config/pure-python
3
+ # Read the Docs configuration file
4
+ # See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
5
+
6
+ # Required
7
+ version : 2
8
+
9
+ # Set the version of Python and other tools you might need
10
+ build :
11
+ os : ubuntu-22.04
12
+ tools :
13
+ python : " 3.11"
14
+
15
+ # Build documentation in the docs/ directory with Sphinx
16
+ sphinx :
17
+ configuration : docs/conf.py
18
+
19
+ # We recommend specifying your dependencies to enable reproducible builds:
20
+ # https://docs.readthedocs.io/en/stable/guides/reproducible-builds.html
21
+ python :
22
+ install :
23
+ - requirements : docs/requirements.txt
24
+ - method : pip
25
+ path : .
Original file line number Diff line number Diff line change @@ -12,6 +12,7 @@ recursive-include docs *.txt
12
12
recursive-include docs Makefile
13
13
14
14
recursive-include src *.py
15
+ include *.yaml
15
16
recursive-include docs *.ast
16
17
recursive-include docs *.bat
17
18
recursive-include docs *.jpg
Original file line number Diff line number Diff line change 123
123
124
124
# The theme to use for HTML and HTML Help pages. See the documentation for
125
125
# a list of builtin themes.
126
- html_theme = 'sphinx_rtd_theme '
126
+ html_theme = 'default '
127
127
128
128
# Theme options are theme-specific and customize the look and feel of a theme
129
129
# further. For a list of options available for each theme, see the
Original file line number Diff line number Diff line change
1
+ Sphinx
Original file line number Diff line number Diff line change @@ -17,6 +17,8 @@ envlist =
17
17
18
18
[testenv]
19
19
usedevelop = true
20
+ package = wheel
21
+ wheel_build_env = .pkg
20
22
pip_pre = py312: true
21
23
deps =
22
24
datetime: DateTime
25
27
Sphinx
26
28
setenv =
27
29
COVERAGE_FILE =.coverage.{envname}
30
+ py312: VIRTUALENV_PIP =23.1.2
31
+ py312: PIP_REQUIRE_VIRTUALENV =0
28
32
commands =
29
33
python -V
30
34
pytest --cov =src --cov =tests --cov-report = {posargs}
You can’t perform that action at this time.
0 commit comments