Skip to content

Commit aff0e1a

Browse files
committed
Bump version to 0.6.0
1 parent f82efcd commit aff0e1a

File tree

6 files changed

+10
-12
lines changed

6 files changed

+10
-12
lines changed

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,11 +36,9 @@ Build from source
3636
-----------------
3737

3838
For other platforms or architectures installation needs to build from source.
39-
First install FLINT 3.0.0. Note that as of python-flint 0.5.0 only this *exact*
40-
version of FLINT will work. In future it is hoped that the version requirement
41-
for python-flint will be FLINT >= 3.0.0 but at the time of writing 3.0.0 is the
42-
newest version of FLINT that has only been released recently and is the only
43-
version that is supported by python-flint.
39+
First install FLINT 3. Starting with python-flint 0.5.0 older versions of Flint
40+
such as 2.9 are not supported any more. Note that as of Flint 3 Arb no longer
41+
needs to be built separately as it is now merged into Flint.
4442

4543
See here for instructions on building FLINT:
4644

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.5.0-cp$VER-cp$VER-win_amd64.whl
47+
WHEELNAME=python_flint-0.6.0-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.5.0-cp$VER-cp$VER-win_amd64.whl \
93+
delvewheel repair dist/python_flint-0.6.0-cp$VER-cp$VER-win_amd64.whl \
9494
--add-path .local/bin:.local/lib/
9595

9696
# Make a virtual enironment to test the wheel

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.5.0'
54+
version = '0.6.0'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '0.5.0'
56+
release = '0.6.0'
5757

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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ build-backend = "setuptools.build_meta"
77
[project]
88
name = "python-flint"
99
description = "Bindings for FLINT and Arb"
10-
version = "0.5.0"
10+
version = "0.6.0"
1111
urls = {Homepage = "https://github.com/flintlib/python-flint"}
1212
authors = [
1313
{name = "Fredrik Johansson", email = "[email protected]"},

src/flint/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@
3333
from .types.dirichlet import *
3434
from .functions.showgood import good, showgood
3535

36-
__version__ = '0.5.0'
36+
__version__ = '0.6.0'

src/flint/test/test.py

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

3636
def test_pyflint():
3737

38-
assert flint.__version__ == "0.5.0"
38+
assert flint.__version__ == "0.6.0"
3939

4040
ctx = flint.ctx
4141
assert str(ctx) == repr(ctx) == _default_ctx_string

0 commit comments

Comments
 (0)