Skip to content

Commit 542cc2b

Browse files
release 3.2.3
1 parent 747e540 commit 542cc2b

3 files changed

Lines changed: 22 additions & 2 deletions

File tree

Changes.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@
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+
727
Release 3.2.2 (2022-09-28)
828
==========================
929

developer-notes/release_process.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Steps 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`

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
# to work properly
5353
sys.path.insert(0, os.path.join(basedir, 'src'))
5454

55-
PYFUSE3_VERSION = '3.2.2'
55+
PYFUSE3_VERSION = '3.2.3'
5656

5757
def main():
5858

0 commit comments

Comments
 (0)