alan-turing-institute / learning-machines-drift

A Python package for monitoring dataset drift in secure environments
4 stars 2 forks source link

Fix python dependency to include `python=3.9` #26

Closed sgreenbury closed 1 year ago

sgreenbury commented 1 year ago

Currently dependency specified as:

[tool.poetry.dependencies]
python = ">3.9,<3.10"

Installation is currently failing and should be updated to include python=3.9:

[tool.poetry.dependencies]
python = ">=3.9,<3.10"
sgreenbury commented 1 year ago

Closes with #27