File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44
55.. currentmodule :: pyfuse3
66
7+ Release 3.2.3 (2023-05-09)
8+ ==========================
9+
10+ * cythonize with latest Cython 0.29.34 (brings Python 3.12 support)
11+
12+ * add a minimal pyproject.toml, require setuptools
13+
14+ * tests: fix integer overflow on 32-bit arches, fixes #47
15+
16+ * test: Use shutil.which() instead of external which(1) program
17+
18+ * setup.py: catch more generic OSError when searching Cython, fixes #63
19+
20+ * setup.py: require Cython >= 0.29
21+
22+ * fix basedir computation in setup.py (fix pip install -e .)
23+
24+ * use sphinx < 6.0 due to compatibility issues with more recent versions
25+
26+
727Release 3.2.2 (2022-09-28)
828==========================
929
Original file line number Diff line number Diff line change 11Steps for Releasing a New Version
22---------------------------------
33
4- * pip install twine sphinx sphinxcontrib-asyncio
4+ * pip install twine " sphinx<6.0" sphinxcontrib-asyncio
55 * pip install -U Cython # important: use latest/best Cython!
66 * Bump version in `setup.py `
77 * Add release date to `Changes.rst `
Original file line number Diff line number Diff line change 5252# to work properly
5353sys .path .insert (0 , os .path .join (basedir , 'src' ))
5454
55- PYFUSE3_VERSION = '3.2.2 '
55+ PYFUSE3_VERSION = '3.2.3 '
5656
5757def main ():
5858
You can’t perform that action at this time.
0 commit comments