conda-forge / beanie-feedstock

A conda-smithy repository for beanie.
BSD 3-Clause "New" or "Revised" License
0 stars 5 forks source link

conda dependencies are out of date #38

Closed analog-cbarber closed 3 months ago

analog-cbarber commented 3 months ago

Solution to issue cannot be found in the documentation.

Issue

As of 1.25.0 The current pyproject.toml dependencies for beanie are:

dependencies = [
    "pydantic>=1.10,<3.0",
    "motor>=2.5.0,<4.0.0",
    "click>=7",
    "toml",
    "lazy-model==0.2.0",
    "typing-extensions>=4.7; python_version < '3.11'",
]

but the conda recipe still has

requirements:
  host:
    - pip
    - flit-core
    - python >=3.7
  run:
    - click >=7
    - motor >=2.5,<4.0
    - pydantic >=1.10.0,<2
    - python >=3.7
    - toml
    - lazy-model >=0.1.0

As a result, the conda beanie pckage cannot be used with pydantic 2.*

Installed packages

N/A

Environment info

N/A