Skip to content

Commit aec5d28

Browse files
committed
Support python 3.8
1 parent b9b53b4 commit aec5d28

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ adhoc = []
4747
version = "0.18.1"
4848
# multiple-pymethods requires Rust 1.62 or above
4949
# features = ["extension-module", "anyhow", "abi3-py39", "multiple-pymethods"]
50-
features = ["extension-module", "anyhow", "abi3-py39"]
50+
features = ["extension-module", "anyhow", "abi3-py38"]
5151

5252
[lib]
5353
name = "spdkit"

spdkit/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
# [[file:../spdkit-python.note::fbe586a0][fbe586a0]]
2+
# required for python 3.8
3+
from __future__ import annotations
4+
25
from .spdkit import *
36
from typing import Dict, List, Sequence, Tuple, Union
47

0 commit comments

Comments
 (0)