Skip to content

Commit dcfe42b

Browse files
Merge pull request #69 from oscarbenjamin/pr_043
Bump version to 0.4.3
2 parents 4fc536d + ff11ff9 commit dcfe42b

File tree

5 files changed

+8
-7
lines changed

5 files changed

+8
-7
lines changed

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.2-cp$VER-cp$VER-win_amd64.whl
47+
WHEELNAME=python_flint-0.4.3-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.2-cp$VER-cp$VER-win_amd64.whl \
93+
delvewheel repair dist/python_flint-0.4.3-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.4.2'
54+
version = '0.4.3'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '0.4.2'
56+
release = '0.4.3'
5757

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

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@
120120
description='Bindings for FLINT and Arb',
121121
long_description=open('README.md').read(),
122122
long_description_content_type='text/markdown',
123-
version='0.4.2',
123+
version='0.4.3',
124124
url='https://github.com/flintlib/python-flint',
125125
author='Fredrik Johansson',
126126
author_email='[email protected]',

src/flint/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,5 @@
2121
from .types.acb_mat import *
2222
from .types.acb_series import *
2323
from .types.fmpz_mpoly import *
24-
__version__ = '0.4.2'
24+
25+
__version__ = '0.4.3'

src/flint/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.2"
33+
assert flint.__version__ == "0.4.3"
3434

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

0 commit comments

Comments
 (0)