From 645da5e897c13ea9fb554d406cf885bfa333b577 Mon Sep 17 00:00:00 2001 From: kaz Date: Wed, 22 Feb 2023 22:51:43 +0900 Subject: [PATCH] Fix setup --- README.rst | 2 +- hftbacktest/__init__.py | 2 +- setup.cfg | 3 +-- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/README.rst b/README.rst index 114f1e4..b5c2f0d 100644 --- a/README.rst +++ b/README.rst @@ -18,7 +18,7 @@ Data Source & Format Please see https://github.com/nkaz001/collect-binancefutures regarding collecting and converting the feed data. Examples -~~~~~~~ +~~~~~~~~ Please see `example `_ directory. Documentation diff --git a/hftbacktest/__init__.py b/hftbacktest/__init__.py index 4d76b09..4414637 100644 --- a/hftbacktest/__init__.py +++ b/hftbacktest/__init__.py @@ -22,7 +22,7 @@ 'Stat', 'validate_data', 'correct_local_timestamp', 'correct_exch_timestamp', 'correct') -__version__ = '1.2.0' +__version__ = '1.2.1' def HftBacktest(data, tick_size, lot_size, maker_fee, taker_fee, order_latency, asset_type, queue_model=None, diff --git a/setup.cfg b/setup.cfg index de98ea5..c38ee51 100644 --- a/setup.cfg +++ b/setup.cfg @@ -8,7 +8,6 @@ project_urls = GitHub: repo = https://github.com/nkaz001/hftbacktest description = High-frequency trading backtesting tool long_description = file: README.rst -long_description_content_type = text/x-rst author = nkaz001 author_email = nkaz001@protonmail.com keywords = hft, high-frequency trading, trading, market-making, backtest @@ -41,6 +40,6 @@ include_package_data = True install_requires = numba ~= 0.56 - numpy ~= 1.23 + numpy < 1.24, >= 1.18 pandas matplotlib