feat(pyargus): use version from Cargo

This commit is contained in:
Anand Balakrishnan 2023-10-06 14:34:10 -07:00
parent 411b144761
commit dc71a51df3
No known key found for this signature in database
3 changed files with 4 additions and 1 deletions

View file

@ -36,3 +36,5 @@ from argus._argus import eval_robust_semantics as eval_robust_semantics
from argus._argus import parse_expr as parse_expr
AllowedDtype: TypeAlias = bool | int | float
__version__: str

View file

@ -2,6 +2,8 @@ from typing import ClassVar, Literal, TypeAlias, TypeVar, final
from typing_extensions import Generic, Self
__version__: str
def parse_expr(expr_str: str) -> Expr: ...
class Expr: ...

View file

@ -1,6 +1,5 @@
[project]
name = "argus-temporal-logic"
version = "0.1.1"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Rust",