浏览代码

fix(python-version): compatibility with NumPy (#65)

tags/v1.0.9
Deuchnord 9 个月前
committed by GitHub
父节点
当前提交
e43319bd6d
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. +5
    -1
      pyproject.toml

+ 5
- 1
pyproject.toml 查看文件

@@ -19,8 +19,12 @@ classifiers = [
] ]


[tool.poetry.dependencies] [tool.poetry.dependencies]
python = ">=3.8,<3.12"
python = "^3.8"
skyfield = "^1.21" skyfield = "^1.21"
numpy = [
{ version = "<1.25", python = "3.8.*" },
{ version = "^1.25", python = "^3.9" },
]
skyfield-data = ">=3,<6" skyfield-data = ">=3,<6"
python-dateutil = "^2.8" python-dateutil = "^2.8"




正在加载...
取消
保存