Merge pull request #172 from guilledk/make_piker_install_again
Minor fixes to make piker installable againems_tweaks
commit
955b9f01a4
|
@ -181,7 +181,7 @@ class Client:
|
||||||
) -> dict:
|
) -> dict:
|
||||||
if since is None:
|
if since is None:
|
||||||
since = arrow.utcnow().floor('minute').shift(
|
since = arrow.utcnow().floor('minute').shift(
|
||||||
minutes=-count).timestamp
|
minutes=-count).timestamp()
|
||||||
# UTC 2017-07-02 12:53:20 is oldest seconds value
|
# UTC 2017-07-02 12:53:20 is oldest seconds value
|
||||||
since = str(max(1499000000, since))
|
since = str(max(1499000000, since))
|
||||||
json = await self._public(
|
json = await self._public(
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -40,6 +40,7 @@ setup(
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
install_requires=[
|
install_requires=[
|
||||||
|
'toml',
|
||||||
'click',
|
'click',
|
||||||
'colorlog',
|
'colorlog',
|
||||||
'attrs',
|
'attrs',
|
||||||
|
@ -69,7 +70,7 @@ setup(
|
||||||
# UI
|
# UI
|
||||||
'PyQt5',
|
'PyQt5',
|
||||||
'pyqtgraph',
|
'pyqtgraph',
|
||||||
'qdarkstyle',
|
'qdarkstyle==2.8.1',
|
||||||
|
|
||||||
# tsdbs
|
# tsdbs
|
||||||
'pymarketstore',
|
'pymarketstore',
|
||||||
|
|
Loading…
Reference in New Issue