Skip to content
Snippets Groups Projects
Commit 9f313b0a authored by Felix Fischer's avatar Felix Fischer :shrimp:
Browse files

Merge branch 'constants' into 'master'

Constants

See merge request !52
parents 6775cd63 7e5d6509
No related branches found
No related tags found
1 merge request!52Constants
Pipeline #1148584 passed
......@@ -5,4 +5,4 @@ useful across several different projects and repositories. It also contains
stub-files with several data-type annotations for scipy and matplot-lib
functions."""
__version__ = "1.8.0"
__version__ = "1.8.1"
#!/usr/bin/env python3
"""
Stub file for sciypy-constants.
"""
from typing import Dict, Tuple
pi: float
golden: float
golden_ratio: float
N_A: float
Avogadro: float
Boltzmann: float
gas_constant: float
def value(key: str) -> float: ...
def unit(key: str) -> str: ...
def precision(key: str) -> float: ...
physical_constants: Dict[str, Tuple[float, str, float]]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment