Chilipp / autodocsumm

Extending your autodoc API docs with a summary
Apache License 2.0
48 stars 14 forks source link

Possible dependency mismatch between Conda and PyPI packages #94

Open leroyvn opened 4 months ago

leroyvn commented 4 months ago

If I list package dependencies on conda-forge, I get this:

$ conda search "autodocsumm=0.2.12" --info
Loading channels: done
autodocsumm 0.2.12 pyhd8ed1ab_0
-------------------------------
file name   : autodocsumm-0.2.12-pyhd8ed1ab_0.conda
name        : autodocsumm
version     : 0.2.12
build       : pyhd8ed1ab_0
build number: 0
size        : 19 KB
license     : Apache-2.0
subdir      : noarch
url         : https://conda.anaconda.org/conda-forge/noarch/autodocsumm-0.2.12-pyhd8ed1ab_0.conda
md5         : b0e58323e15cb50328a1bb3e8158a49c
timestamp   : 2024-01-05 11:36:27 UTC
dependencies: 
  - python >=3.5
  - six
  - sphinx >=2.2,<=5.0

while the pyproject.toml file lists this:

requires-python = '>= 3.7'
dependencies = [
    'Sphinx >= 2.2, < 8.0',
]

Is this intentional?

Chilipp commented 1 month ago

thanks @leroyvn and my apologies for the delay! I will fix this with the new release 0.2.13 when it is published on conda-forge

leroyvn commented 1 month ago

Great, thanks!