File: version.py

package info (click to toggle)
python-setuptools-rust 1.12.0%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 660 kB
  • sloc: python: 1,815; javascript: 95; sh: 14; makefile: 13
file content (4 lines) | stat: -rw-r--r-- 164 bytes parent folder | download
1
2
3
4
__version__ = version = "1.12.0"
__version_tuple__ = version_tuple = tuple(
    map(lambda x: int(x[1]) if x[0] < 3 else x[1], enumerate(__version__.split(".")))
)