Skip to content

Commit 9ef1ebb

Browse files
Merge pull request #155 from oscarbenjamin/pr_complete_deply_script
Finish release deploy script
2 parents 116febc + efea56e commit 9ef1ebb

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

.github/workflows/buildwheel.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
#os: [ubuntu-20.04, windows-2019, macos-13, macos-14]
14-
os: [macos-14]
13+
os: [ubuntu-20.04, windows-2019, macos-13, macos-14]
1514

1615
steps:
1716
- uses: actions/checkout@v4

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.7.0a1'
54+
version = '0.7.0a2'
5555
# The full version, including alpha/beta/rc tags.
56-
release = '0.7.0a1'
56+
release = '0.7.0a2'
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
@@ -5,7 +5,7 @@ build-backend = "mesonpy"
55
[project]
66
name = "python-flint"
77
description = "Bindings for FLINT and Arb"
8-
version = "0.7.0a1"
8+
version = "0.7.0a2"
99
urls = {Homepage = "https://github.com/flintlib/python-flint"}
1010
authors = [
1111
{name = "Fredrik Johansson", email = "[email protected]"},

src/flint/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@
3838
FLINT_RELEASE as __FLINT_RELEASE__,
3939
)
4040

41-
__version__ = '0.7.0a1'
41+
__version__ = '0.7.0a2'

src/flint/test/test_all.py

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

3333
def test_pyflint():
3434

35-
assert flint.__version__ == "0.7.0a1"
35+
assert flint.__version__ == "0.7.0a2"
3636

3737
ctx = flint.ctx
3838
assert str(ctx) == repr(ctx) == _default_ctx_string

0 commit comments

Comments
 (0)