1
0

Compare commits

..

3 Commits

Author SHA1 Message Date
44181387ff 🤖 Bumped version to 0.1.17
All checks were successful
Package Python / Package (push) Successful in 22s
Test Python / Test (push) Successful in 20s
This commit was automatically generated by a script: https://gitfub.space/Jmaa/python-omni
2024-06-04 22:20:02 +02:00
fa45d7afdb
Made ticker format more flexible 2024-06-04 22:19:54 +02:00
bac92f449b 🤖 Repository layout updated to latest Python version
This commit was automatically generated by a script: https://gitfub.space/Jmaa/python-omni
2024-06-04 22:15:35 +02:00
2 changed files with 2 additions and 2 deletions

View File

@ -10,7 +10,7 @@ import enforce_typing
## Ids ## Ids
RE_TICKER_FORMAT = r'^[A-Z0-9_]+$' RE_TICKER_FORMAT = r'^[A-Z0-9_]+$'
RE_TICKER_FORMAT_FLEXIBLE = r'^[^:\s]+$' RE_TICKER_FORMAT_FLEXIBLE = r'^[^:\s](?:[^:]*[^:\s])?$'
RE_CRYPTO_TICKER_FORMAT = r'^\S+$' RE_CRYPTO_TICKER_FORMAT = r'^\S+$'

View File

@ -1 +1 @@
__version__ = '0.1.16' __version__ = '0.1.17'