mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
Add an error message to pysol_cards version check
This commit is contained in:
parent
fd5bf10ddd
commit
836eb54008
1 changed files with 2 additions and 2 deletions
|
@ -36,8 +36,8 @@ except ImportError:
|
|||
"You need to install " +
|
||||
"https://pypi.python.org/pypi/random2 using pip or similar.")
|
||||
|
||||
assert ((pysol_cards.VERSION if 'VERSION' in pysol_cards.__dict__
|
||||
else (0, 0, 0)) >= (0, 8, 5))
|
||||
assert getattr(pysol_cards, 'VERSION', (0, 0, 0)) >= (0, 8, 5), (
|
||||
"Newer version of https://pypi.org/project/pysol-cards is required.")
|
||||
from pysol_cards.random_base import RandomBase # noqa: I100
|
||||
from pysol_cards.random import match_ms_deal_prefix # noqa: I100
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue