Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions bin/cibw_before_all_linux_aarch64.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#!/usr/bin/env bash

set -e

cat wheels/LICENSE_linux_wheels.txt >> LICENSE

yum install -y xz
bin/build_dependencies_unix.sh\
--gmp gmp\
Expand Down
4 changes: 4 additions & 0 deletions bin/cibw_before_all_linux_x86_64.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#!/usr/bin/env bash

set -e

cat wheels/LICENSE_linux_wheels.txt >> LICENSE

yum install -y xz
bin/build_dependencies_unix.sh\
--gmp gmp\
Expand Down
4 changes: 4 additions & 0 deletions bin/cibw_before_all_macosx_arm64.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#!/usr/bin/env bash

set -e

cat wheels/LICENSE_macos_wheels.txt >> LICENSE

export CPPFLAGS=" --target=arm64-apple-macos11"
export LDFLAGS=" -arch arm64"

Expand Down
4 changes: 4 additions & 0 deletions bin/cibw_before_all_macosx_x86_64.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
#!/usr/bin/env bash

set -e

cat wheels/LICENSE_macos_wheels.txt >> LICENSE

brew install automake libtool

bin/build_dependencies_unix.sh\
Expand Down
2 changes: 2 additions & 0 deletions bin/cibw_before_all_windows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

set -o errexit

cat wheels/LICENSE_windows_wheels.txt >> LICENSE

# Uncomment this to run cibuildwheel locally on Windows:
# export PATH=$PATH:/c/msys64/usr/bin:/c/msys64/mingw64/bin

Expand Down
4 changes: 2 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@
# built documents.
#
# The short X.Y version.
version = '0.7.0'
version = '0.7.1'
# The full version, including alpha/beta/rc tags.
release = '0.7.0'
release = '0.7.1'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[project]
name = "python-flint"
description = "Bindings for FLINT"
version = "0.7.0"
version = "0.7.1"
# This needs to be in sync with README, cibuildwheel and CI config.
requires-python = ">= 3.11"
authors = [
{name = "Fredrik Johansson", email = "fredrik.johansson@gmail.com"},
{name = "Oscar Benjamin", email = "oscar.j.benjamin@gmail.com"},
]
license = {text = "MIT"}
license = {file = "LICENSE"}
classifiers = [
"Topic :: Scientific/Engineering :: Mathematics",
]
Expand Down Expand Up @@ -85,7 +85,8 @@ package = "flint"
build = "cp311-* cp312-* cp313-* cp313t-*" # pp311-*"
skip = "*-win32 *-manylinux_i686 *-musllinux_*"

free-threaded-support = true
# Enable building for free-threaded CPython builds
enable = ["cpython-freethreading"]

manylinux-x86_64-image = "manylinux2014"
manylinux-aarch64-image = "manylinux_2_28"
Expand Down
2 changes: 1 addition & 1 deletion src/flint/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,4 +48,4 @@
Ordering,
)

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

def test_pyflint():

assert flint.__version__ == "0.7.0"
assert flint.__version__ == "0.7.1"

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