Skip to content

Commit a8563cf

Browse files
committed
Update version in tests
1 parent 4b73645 commit a8563cf

File tree

7 files changed

+13
-11
lines changed

7 files changed

+13
-11
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ Installation
1919
------------
2020

2121
On Windows (x86-64) or OSX (x86-64 or arm64) there are prebuilt wheels for
22-
python-flint 0.4.0 that can be installed from PyPI using pip
22+
python-flint 0.4.1 that can be installed from PyPI using pip
2323

2424
pip install python-flint
2525

2626
There is currently a problem with the Linux wheels and so for now Linux wheels
2727
are not available on PyPI. Instead for Linux first install both FLINT 2.9.0 and
28-
Arb 2.23. Note that as of python-flint 0.4.0 only these *exact* versions of
28+
Arb 2.23. Note that as of python-flint 0.4.1 only these *exact* versions of
2929
FLINT and Arb will work. While some Linux distributions may provide FLINT and
3030
Arb it is unlikely that they will provide the exact versions required (e.g.
3131
for Ubuntu only Ubuntu 23.04 provides these versions at the time of writing).

bin/build_mingw64_wheel.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ fi
4444
PYTHON=$PYTHONDIR/python
4545
VER="${PYTHONVER//./}"
4646

47-
WHEELNAME=python_flint-0.4.0-cp$VER-cp$VER-win_amd64.whl
47+
WHEELNAME=python_flint-0.4.1-cp$VER-cp$VER-win_amd64.whl
4848

4949
$PYTHON -c 'print("hello world")'
5050

@@ -90,7 +90,7 @@ wheel pack python_flint-*
9090
cd ..
9191

9292
# Make the wheel relocatable
93-
delvewheel repair dist/python_flint-0.4.0-cp$VER-cp$VER-win_amd64.whl \
93+
delvewheel repair dist/python_flint-0.4.1-cp$VER-cp$VER-win_amd64.whl \
9494
--add-path .local/bin:.local/lib/
9595

9696
# Make a virtual enironment to test the wheel

bin/pip_install_ubuntu.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ set -o errexit
1818
# system installation of Flint and Arb in Ubuntu.
1919
#
2020
# Ubuntu 23.04 has Flint 2.9.0 and Arb 2.23.0, so this script might work there
21-
# (for python-flint 0.4.0). That is untested though (23.04 not available in CI).
21+
# (for python-flint 0.4.1). That is untested though (23.04 not available in CI).
2222
#
2323
# With Ubuntu 22.04, this will build but then crashes when running the tests.
2424
# most likely this is because the versions of flint and flint-arb are too old.
2525
# At the time of writing in Ubuntu 22.04 there is Flint 2.8.4 and Arb 2.22. The
26-
# main CI tests and wheels for python-flint 0.4.0 are built with Flint 2.9.0
26+
# main CI tests and wheels for python-flint 0.4.1 are built with Flint 2.9.0
2727
# and Arb 2.23.0.
2828
#
2929
# Link against libflint-arb instead of libarb on Ubuntu

doc/source/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
# built documents.
5252
#
5353
# The short X.Y version.
54-
version = '0.4.0'
54+
version = '0.4.1'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '0.4.0'
56+
release = '0.4.1'
5757

5858
# The language for content autogenerated by Sphinx. Refer to documentation
5959
# for a list of supported languages.

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,9 @@
8484
packages=['flint'],
8585
package_dir={'': 'src'},
8686
description='Bindings for FLINT and Arb',
87-
version='0.4.0',
87+
long_description=open('README.md').read(),
88+
long_description_content_type='text/markdown',
89+
version='0.4.1',
8890
url='https://github.com/python-flint/python-flint',
8991
author='Fredrik Johansson',
9092
author_email='[email protected]',

src/flint/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from ._flint import *
22

3-
__version__ = '0.4.0'
3+
__version__ = '0.4.1'

test/test.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def raises(f, exception):
3030

3131
def test_pyflint():
3232

33-
assert flint.__version__ == "0.4.0"
33+
assert flint.__version__ == "0.4.1"
3434

3535
ctx = flint.ctx
3636
assert str(ctx) == repr(ctx) == _default_ctx_string

0 commit comments

Comments
 (0)