Skip to content

Commit c2c4467

Browse files
committed
🔖 version 0.7.4
1 parent 12cc514 commit c2c4467

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
test:
1313
strategy:
1414
matrix:
15-
py_ver: ['3.9', '3.10', '3.11', '3.12', '3.13']
15+
py_ver: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
1616
runs-on: ubuntu-latest
1717
steps:
1818
- uses: actions/checkout@v6
@@ -37,7 +37,7 @@ jobs:
3737
test_with_extensions:
3838
strategy:
3939
matrix:
40-
py_ver: ['3.9', '3.10', '3.11', '3.12', '3.13']
40+
py_ver: ['3.9', '3.10', '3.11', '3.12', '3.13', '3.14']
4141
runs-on: ubuntu-latest
4242
steps:
4343
- uses: actions/checkout@v6

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "tarina"
3-
version = "0.7.3"
3+
version = "0.7.4"
44
description = "A collection of common utils for Arclet"
55
authors = [
66
{name = "RF-Tar-Railt", email = "rf_tar_railt@qq.com"},

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
NO_EXTENSIONS = bool(os.environ.get("TARINA_NO_EXTENSIONS")) # type: bool
77

8-
if sys.implementation.name == "cpython":
8+
if sys.implementation.name != "cpython":
99
NO_EXTENSIONS = True
1010

1111

0 commit comments

Comments
 (0)