File tree Expand file tree Collapse file tree 7 files changed +17
-12
lines changed
src/documenteer/sphinxext/lssttasks Expand file tree Collapse file tree 7 files changed +17
-12
lines changed Original file line number Diff line number Diff line change 18
18
- " 3.8"
19
19
- " 3.9"
20
20
- " 3.10"
21
+ - " 3.11"
21
22
sphinx-version :
22
23
- " 5"
23
24
- " dev"
60
61
- name : Build docs in tox
61
62
uses : lsst-sqre/run-tox@v1
62
63
with :
63
- python-version : " 3.10 "
64
+ python-version : " 3.11 "
64
65
tox-envs : " docs,docs-lint"
65
66
use-cache : false
66
67
91
92
uses : lsst-sqre/build-and-publish-to-pypi@v1
92
93
with :
93
94
pypi-token : " "
94
- python-version : " 3.10 "
95
+ python-version : " 3.11 "
95
96
upload : false
Original file line number Diff line number Diff line change 24
24
- name : Set up Python
25
25
uses : actions/setup-python@v4
26
26
with :
27
- python-version : ' 3.10 '
27
+ python-version : ' 3.11 '
28
28
29
29
- name : Run pre-commit
30
30
uses : pre-commit/action@v3.0.0
38
38
- ' 3.8'
39
39
- ' 3.9'
40
40
- ' 3.10'
41
+ - ' 3.11'
41
42
sphinx-version :
42
43
- ' 5'
43
44
82
83
- name : Run tox
83
84
uses : lsst-sqre/run-tox@v1
84
85
with :
85
- python-version : ' 3.10 '
86
+ python-version : ' 3.11 '
86
87
tox-envs : ' docs,docs-lint'
87
88
88
89
# Only attempt documentation uploads for tagged releases and pull
@@ -123,5 +124,5 @@ jobs:
123
124
uses : lsst-sqre/build-and-publish-to-pypi@v1
124
125
with :
125
126
pypi-token : ${{ secrets.PYPI_SQRE_ADMIN }}
126
- python-version : ' 3.10 '
127
+ python-version : ' 3.11 '
127
128
upload : ${{ github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') }}
Original file line number Diff line number Diff line change @@ -61,3 +61,7 @@ docs/_build/
61
61
62
62
# PyBuilder
63
63
target /
64
+
65
+ # Python environments
66
+ .venv
67
+ venv
Original file line number Diff line number Diff line change @@ -14,19 +14,19 @@ repos:
14
14
files : (README\.rst)|(CHANGELOG\.rst)
15
15
16
16
- repo : https://github.com/PyCQA/isort/
17
- rev : 5.11.4
17
+ rev : 5.12.0
18
18
hooks :
19
19
- id : isort
20
20
additional_dependencies :
21
21
- toml
22
22
23
23
- repo : https://github.com/psf/black
24
- rev : 22.12 .0
24
+ rev : 23.1 .0
25
25
hooks :
26
26
- id : black
27
27
28
28
- repo : https://github.com/asottile/blacken-docs
29
- rev : v1.12.1
29
+ rev : 1.13.0
30
30
hooks :
31
31
- id : blacken-docs
32
32
additional_dependencies : [black==22.12.0]
38
38
- id : flake8
39
39
40
40
- repo : https://github.com/pre-commit/mirrors-prettier
41
- rev : ' v2.7.1 '
41
+ rev : ' v3.0.0-alpha.4 '
42
42
hooks :
43
43
- id : prettier
44
44
types_or : [css, scss, javascript]
Original file line number Diff line number Diff line change @@ -14,6 +14,7 @@ classifiers = [
14
14
" Programming Language :: Python :: 3.8" ,
15
15
" Programming Language :: Python :: 3.9" ,
16
16
" Programming Language :: Python :: 3.10" ,
17
+ " Programming Language :: Python :: 3.11" ,
17
18
" Intended Audience :: Developers" ,
18
19
" Topic :: Documentation" ,
19
20
" Topic :: Documentation :: Sphinx" ,
Original file line number Diff line number Diff line change @@ -161,7 +161,6 @@ def types(self):
161
161
162
162
163
163
class ConfigurableListDirective (BaseTopicListDirective ):
164
-
165
164
directive_name = "lsst-configurables"
166
165
167
166
@property
@@ -170,7 +169,6 @@ def types(self):
170
169
171
170
172
171
class ConfigListDirective (TaskListDirective ):
173
-
174
172
directive_name = "lsst-configs"
175
173
176
174
@property
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ description = Compile coverage from each test run.
31
31
skip_install = true
32
32
deps = coverage[toml]>=5.0.2
33
33
depends =
34
- py{37,38,39} -test-sphinx{5}
34
+ py-test-sphinx{5}
35
35
commands =
36
36
coverage combine
37
37
coverage report
You can’t perform that action at this time.
0 commit comments