File tree Expand file tree Collapse file tree 7 files changed +13
-11
lines changed Expand file tree Collapse file tree 7 files changed +13
-11
lines changed Original file line number Diff line number Diff line change @@ -19,13 +19,13 @@ Installation
1919------------
2020
2121On 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
2626There is currently a problem with the Linux wheels and so for now Linux wheels
2727are 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
2929FLINT and Arb will work. While some Linux distributions may provide FLINT and
3030Arb it is unlikely that they will provide the exact versions required (e.g.
3131for Ubuntu only Ubuntu 23.04 provides these versions at the time of writing).
Original file line number Diff line number Diff line change 4444PYTHON=$PYTHONDIR /python
4545VER=" ${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-*
9090cd ..
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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 11from ._flint import *
22
3- __version__ = '0.4.0 '
3+ __version__ = '0.4.1 '
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ def raises(f, exception):
3030
3131def 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
You can’t perform that action at this time.
0 commit comments