From 74f2439b6ddf6d33d22210c6f7a29ca6f5e28737 Mon Sep 17 00:00:00 2001 From: nkaz001 Date: Sun, 4 Aug 2024 10:18:48 -0400 Subject: [PATCH] chore: update pyproject.toml. --- py-hftbacktest/pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/py-hftbacktest/pyproject.toml b/py-hftbacktest/pyproject.toml index ec426b5..266851e 100644 --- a/py-hftbacktest/pyproject.toml +++ b/py-hftbacktest/pyproject.toml @@ -1,13 +1,13 @@ [build-system] -requires = ["maturin>=1.3.2"] +requires = ["maturin~=1.7"] build-backend = "maturin" [project] name = "hftbacktest" description = "file: ../README.rst" -readme = "../README.rst" +readme = "README.rst" authors = [{ name = "nkaz001", email = "nkaz001@protonmail.com" }] -license = { file = "../LICENSE" } +license = { file = "LICENSE" } version = "2.0.0-rc0" requires-python = ">=3.10" @@ -19,7 +19,7 @@ classifiers = [ "Intended Audience :: Financial and Insurance Industry", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", - "Operating System :: OS Independent", + "Operating System :: POSIX :: Linux", "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3 :: Only", @@ -35,7 +35,7 @@ classifiers = [ Repository = "https://github.com/nkaz001/hftbacktest" [project.optional-dependencies] -numpy = ["numpy >= 1.16.0, < 2.0.0"] +numpy = ["numpy ~= 1.26, < 2"] numba = ["numba ~= 0.59"] polars = ["polars"] holoviews = ["holoviews"]