File tree Expand file tree Collapse file tree 5 files changed +18
-10
lines changed
sphinxcontrib/svgbob/_svgbob Expand file tree Collapse file tree 5 files changed +18
-10
lines changed Original file line number Diff line number Diff line change @@ -114,10 +114,10 @@ jobs:
114114 steps :
115115 - uses : actions/checkout@v4
116116 - uses : dtolnay/rust-toolchain@stable
117- - name : Set up Python 3.12
117+ - name : Set up Python 3.14
118118 uses : actions/setup-python@v5
119119 with :
120- python-version : 3.12
120+ python-version : 3.14
121121 - name : Install build requirements
122122 run : python -m pip install -r .github/workflows/requirements.txt
123123 - name : Build source distribution
@@ -135,19 +135,19 @@ jobs:
135135 - sdist
136136 steps :
137137 - uses : dtolnay/rust-toolchain@stable
138- - name : Setup Python 3.12
138+ - name : Setup Python 3.14
139139 uses : actions/setup-python@v5
140140 with :
141- python-version : 3.12
141+ python-version : 3.14
142142 - name : Download built wheels
143143 uses : actions/download-artifact@v4
144144 with :
145145 name : sdist
146146 path : dist/
147147 - name : Update pip to latest version
148- run : python -m pip install -U pip
148+ run : python -m pip install -U pip maturin
149149 - name : Install built wheel
150- run : python -m pip install --no-binary sphinxcontrib-svgbob --find-links=dist sphinxcontrib-svgbob
150+ run : python -m pip install -v - -no-binary sphinxcontrib-svgbob --find-links=dist sphinxcontrib-svgbob
151151 - name : Run built-in tests
152152 run : python -m unittest sphinxcontrib.svgbob.tests -vv
153153
Original file line number Diff line number Diff line change @@ -6,7 +6,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66
77
88## [ Unreleased]
9- [ Unreleased ] : https://github.com/althonos/sphinxcontrib-svgbob/compare/v0.3.1...HEAD
9+ [ Unreleased ] : https://github.com/althonos/sphinxcontrib-svgbob/compare/v0.3.2...HEAD
10+
11+
12+ ## [ v0.3.2] - 2026-02-19
13+ [ v0.3.2 ] : https://github.com/althonos/sphinxcontrib-svgbob/compare/v0.3.1...v0.3.2
14+
15+ ### Changed
16+ - Bump ` pyo3 ` dependency from ` 0.23.3 ` to ` 0.28.1 ` .
17+ - Setup build for Python 3.8 Limited API ([ #7 ] ( https://github.com/sphinx-contrib/svgbob/issues/7 ) ).
1018
1119
1220## [ v0.3.1] - 2025-01-09
Original file line number Diff line number Diff line change 11MIT License
22
3- Copyright (c) 2021-2025 Martin Larralde <martin.larralde@embl.de>
3+ Copyright (c) 2021-2026 Martin Larralde <martin.larralde@embl.de>
44
55Permission is hereby granted, free of charge, to any person obtaining a copy
66of this software and associated documentation files (the "Software"), to deal
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ name = "sphinxcontrib-svgbob"
77dynamic = [" version" ]
88description = " A Sphinx extension to convert ASCII diagrams to SVGs with Svgbob."
99readme = " README.md"
10- requires-python = " >=3.7 "
10+ requires-python = " >=3.8 "
1111license = { file = " COPYING" }
1212authors = [
1313 { name = " Martin Larralde" , email = " martin.larralde@embl.de" },
Original file line number Diff line number Diff line change 11[package ]
22name = " sphinxcontrib-svgbob"
3- version = " 0.3.1 "
3+ version = " 0.3.2 "
44authors = [" Martin Larralde <martin.larralde@embl.de>" ]
55edition = " 2021"
66license = " MIT"
You can’t perform that action at this time.
0 commit comments