Skip to content

Commit

Permalink
Merge pull request #69 from oscarbenjamin/pr_043
Browse files Browse the repository at this point in the history
Bump version to 0.4.3
  • Loading branch information
oscarbenjamin authored Sep 7, 2023
2 parents 4fc536d + ff11ff9 commit dcfe42b
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions bin/build_mingw64_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ fi
PYTHON=$PYTHONDIR/python
VER="${PYTHONVER//./}"

WHEELNAME=python_flint-0.4.2-cp$VER-cp$VER-win_amd64.whl
WHEELNAME=python_flint-0.4.3-cp$VER-cp$VER-win_amd64.whl

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

Expand Down Expand Up @@ -90,7 +90,7 @@ wheel pack python_flint-*
cd ..

# Make the wheel relocatable
delvewheel repair dist/python_flint-0.4.2-cp$VER-cp$VER-win_amd64.whl \
delvewheel repair dist/python_flint-0.4.3-cp$VER-cp$VER-win_amd64.whl \
--add-path .local/bin:.local/lib/

# Make a virtual enironment to test the wheel
Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
# built documents.
#
# The short X.Y version.
version = '0.4.2'
version = '0.4.3'
# The full version, including alpha/beta/rc tags.
release = '0.4.2'
release = '0.4.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
description='Bindings for FLINT and Arb',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
version='0.4.2',
version='0.4.3',
url='https://github.com/flintlib/python-flint',
author='Fredrik Johansson',
author_email='[email protected]',
Expand Down
3 changes: 2 additions & 1 deletion src/flint/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,4 +21,5 @@
from .types.acb_mat import *
from .types.acb_series import *
from .types.fmpz_mpoly import *
__version__ = '0.4.2'

__version__ = '0.4.3'
2 changes: 1 addition & 1 deletion src/flint/test/test.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def raises(f, exception):

def test_pyflint():

assert flint.__version__ == "0.4.2"
assert flint.__version__ == "0.4.3"

ctx = flint.ctx
assert str(ctx) == repr(ctx) == _default_ctx_string
Expand Down

0 comments on commit dcfe42b

Please sign in to comment.