File tree Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 5454# built documents.
5555#
5656# The short X.Y version.
57- version = open ("../../VERSION" ).read ().strip ()
57+ import tomli
58+ with open ("../../pyproject.toml" , "rb" ) as f :
59+ toml_dict = tomli .load (f )
60+ version = toml_dict ['project' ]['version' ]
5861# The full version, including alpha/beta/rc tags.
5962release = version
6063
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "mesonpy"
44
55[project ]
66name = " cysignals"
7- version = " 1.12.2 "
7+ version = " 1.12.3 "
88description = " Interrupt and signal handling for Cython"
99license = { file = " LICENSE" }
1010readme = { file = " README.rst" , content-type = " text/x-rst" }
Original file line number Diff line number Diff line change 1+ version : 2
12conda :
23 file : readthedocs-conda.yml
34python :
4- version : 2.7
5+ version : " 3.11 "
56 pip_install : true
7+
Original file line number Diff line number Diff line change 44Cython
55Sphinx
66flake8
7+ tomli
78pytest >= 8.0.0
You can’t perform that action at this time.
0 commit comments