File tree Expand file tree Collapse file tree 4 files changed +11
-14
lines changed Expand file tree Collapse file tree 4 files changed +11
-14
lines changed Original file line number Diff line number Diff line change 9
9
strategy :
10
10
max-parallel : 4
11
11
matrix :
12
- python-version : [3.9 ]
12
+ python-version : [3.13 ]
13
13
14
14
steps :
15
15
- name : Checkout code
20
20
with :
21
21
python-version : ${{ matrix.python-version }}
22
22
23
- - name : Install Dependencies
24
- run : pip install -e .[docs]
25
-
26
23
- name : Check Sphinx Documentation build minimally
27
- working-directory : ./docs
28
- run : sphinx-build -E -W source build
24
+ run : make docs
29
25
30
26
- name : Check for documentation style errors
31
- working-directory : ./docs
32
- run : ./scripts/doc8_style_check.sh
33
-
34
-
27
+ run : make check
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ version: 2
7
7
8
8
# Build in latest ubuntu/python
9
9
build :
10
- os : ubuntu-22 .04
10
+ os : ubuntu-24 .04
11
11
tools :
12
- python : " 3.11 "
12
+ python : " 3.13 "
13
13
14
14
# Build PDF & ePub
15
15
formats :
Original file line number Diff line number Diff line change 9
9
10
10
docs : conf
11
11
rm -rf docs/build/
12
- @${ACTIVATE} sphinx-build docs/source docs/build/
12
+ @${ACTIVATE} sphinx-build -E -W docs/source docs/build/
13
+
14
+ check :
15
+ @${ACTIVATE} doc8 --max-line-length 100 docs/source/ --ignore D000 --quiet
13
16
14
17
clean :
15
18
@echo " -> Clean the Python env"
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = aboutcode
3
+ version = 0.0.1
3
4
license = Apache-2.0
4
5
5
6
# description must be on ONE line https://github.com/pypa/setuptools/issues/1390
@@ -29,7 +30,7 @@ license_files =
29
30
[options]
30
31
zip_safe = false
31
32
setup_requires = setuptools_scm[toml] >= 4
32
- python_requires = >=3.7
33
+ python_requires = >=3.10
33
34
install_requires =
34
35
35
36
You can’t perform that action at this time.
0 commit comments