Skip to content

Commit 3178372

Browse files
committed
Test 3.14
1 parent a880efa commit 3178372

4 files changed

Lines changed: 640 additions & 419 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
1717
strategy:
1818
matrix:
19-
python-version: ["3.11", "3.12", "3.13"]
19+
python-version: ["3.11", "3.12", "3.13", "3.14"]
2020

2121
steps:
2222
- uses: actions/checkout@v3
@@ -31,11 +31,11 @@ jobs:
3131
- name: run tests
3232
run: make test
3333
- name: upload coverage
34-
if: matrix.python-version == '3.13'
34+
if: matrix.python-version == '3.14'
3535
uses: codecov/codecov-action@v4
3636
with:
3737
token: ${{ secrets.CODECOV_TOKEN }}
3838
files: ./build/coverage.xml
3939
- name: release
40-
if: ${{matrix.python-version == '3.13' && github.ref == 'refs/heads/main' && github.event.head_commit.message == 'release'}}
40+
if: ${{matrix.python-version == '3.14' && github.ref == 'refs/heads/main' && github.event.head_commit.message == 'release'}}
4141
run: make publish

metablock/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from .spaces import Block, Service, Space, SpaceExtension
66
from .user import User
77

8-
__version__ = "1.1.0"
8+
__version__ = "1.1.1"
99

1010
__all__ = [
1111
"Metablock",

0 commit comments

Comments
 (0)