Skip to content

Commit 39670c8

Browse files
committed
Update
Migrate to Python 3.10 and Sphinx 5
1 parent 144e583 commit 39670c8

File tree

4 files changed

+25
-22
lines changed

4 files changed

+25
-22
lines changed

.gitlab-ci.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22

33

44
'.common':
5-
image: 'python:3.6'
5+
image: 'python:3.10'
66
before_script:
77
- 'apt-get --assume-yes --quiet update'
88
- 'apt-get --assume-yes --quiet install --no-install-recommends
99
graphviz
1010
latexmk
11+
tex-gyre
1112
texlive-fonts-recommended
1213
texlive-latex-extra
1314
texlive-latex-recommended'

.travis.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,19 @@ language: 'python'
66
os:
77
- 'linux'
88

9+
dist: 'bionic'
10+
911
sudo: false
1012

1113
python:
12-
- '3.6'
14+
- '3.10'
1315

1416
addons:
1517
apt:
1618
packages:
1719
- 'graphviz'
1820
- 'latexmk'
21+
- 'tex-gyre'
1922
- 'texlive-fonts-recommended'
2023
- 'texlive-latex-extra'
2124
- 'texlive-latex-recommended'

requirements.txt

+18-19
Original file line numberDiff line numberDiff line change
@@ -1,24 +1,23 @@
11
alabaster==0.7.12
2-
Babel==2.9.1
3-
certifi==2020.12.5
4-
chardet==4.0.0
5-
docutils==0.16
6-
idna==2.10
7-
imagesize==1.2.0
8-
Jinja2==2.11.3
9-
MarkupSafe==1.1.1
10-
packaging==20.9
11-
Pygments==2.9.0
12-
pyparsing==2.4.7
13-
pytz==2021.1
14-
requests==2.25.1
15-
setuptools==50.3.0
16-
snowballstemmer==2.1.0
17-
Sphinx==3.5.4
2+
Babel==2.10.3
3+
certifi==2022.9.14
4+
charset-normalizer==2.1.1
5+
docutils==0.19
6+
idna==3.4
7+
imagesize==1.4.1
8+
Jinja2==3.1.2
9+
MarkupSafe==2.1.1
10+
packaging==21.3
11+
Pygments==2.13.0
12+
pyparsing==3.0.9
13+
pytz==2022.2.1
14+
requests==2.28.1
15+
snowballstemmer==2.2.0
16+
Sphinx==5.1.1
1817
sphinxcontrib-applehelp==1.0.2
1918
sphinxcontrib-devhelp==1.0.2
20-
sphinxcontrib-htmlhelp==1.0.3
19+
sphinxcontrib-htmlhelp==2.0.0
2120
sphinxcontrib-jsmath==1.0.1
2221
sphinxcontrib-qthelp==1.0.3
23-
sphinxcontrib-serializinghtml==1.1.4
24-
urllib3==1.26.4
22+
sphinxcontrib-serializinghtml==1.1.5
23+
urllib3==1.26.12

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ envlist =
77
skipsdist = True
88

99
[testenv]
10-
basepython = python3.6
10+
basepython = python3.10
1111
commands =
1212
make
1313
deps =

0 commit comments

Comments
 (0)