1
0
mirror of https://github.com/pybind/pybind11.git synced 2025-03-12 07:49:28 +00:00
pybind11/pybind11/_version.py
Henry Fredrick Schreiner 4a5b81b1b7 chore: get back to work
2021-01-26 22:28:09 -05:00

13 lines
206 B
Python

# -*- coding: utf-8 -*-
def _to_int(s):
try:
return int(s)
except ValueError:
return s
__version__ = "2.6.3.dev"
version_info = tuple(_to_int(s) for s in __version__.split("."))