Sign in
android-kvm
/
buildroot
/
refs/heads/master
/
.
/
package
/
python-pybind
/
python-pybind_version.py.in
blob: c4cc5d074d5cb5c6c4dc4142576611c30b6f7b82 [
file
] [
log
] [
blame
] [
edit
]
from
__future__
import
annotations
def
_to_int
(
s
:
str
)
->
int
|
str
:
try
:
return
int
(
s
)
except
ValueError
:
return
s
__version__
=
"@@PYBIND_VERSION@@"
version_info
=
tuple
(
_to_int
(
s
)
for
s
in
__version__
.
split
(
"."
))