mirror of
https://github.com/pyscript/pyscript.git
synced 2025-12-20 02:37:41 -05:00
* Import current version as PyScript.__version__ and PyScript.version_info * Add integration, python unit tests * Mock pyscript.py with __mocks__/pyscript.js to make jest tests happy
9 lines
338 B
Markdown
9 lines
338 B
Markdown
# `__version__`
|
|
|
|
`PyScript.__version__` is a `str` representing the current version of PyScript in a human-readable form. For a structured version more suitable to comparisons, and for details of what each part of the version number represents, see [`version_info`](version_info.md)
|
|
|
|
```shell
|
|
>>> pyscript.__version__
|
|
'2023.02.1.dev'
|
|
```
|