Skip to content

Relax the versioning #50

Description

@JudithBernett

I was speaking with some of the Bioconda maintainers, and they commented on my Bioconda recipe, suggesting that it is better practice not to cap the versions and rely on someone manually bumping them. Instead, they believe it is better to address version-related problems as they arise. I was trying to do that for drevalpy, but because we have curve-curator as a dependency, I could, e.g., not bump to Python 3.14.

What do you think about uncapping the versions? So, instead of:

python = ">=3.11,<3.14"
bokeh = ">=3.4.0,<3.8.0"
numpy = ">=1.25.0,<3.0"
pandas = "^2.1.0"
scipy = "^1.10.1"
statsmodels = "^0.14.0"
tqdm = "^4.66.1"
pytest = "^7.4.3"
[tool.poetry.group.dev.dependencies]
seaborn = "^0.12.2"
pytest-cov = "^4.1.0"

it would become

python = ">=3.11" 
 bokeh = ">=3.4.0" 
 numpy = ">=1.25.0" 
 pandas = ">=2.1.0" 
 scipy = ">=1.10.1" 
 statsmodels = ">=0.14.0" 
 tqdm = ">=4.66.1" 
 pytest = ">=7.4.3" 
  
 [tool.poetry.group.dev.dependencies] 
 seaborn = ">=0.12.2" 
 pytest-cov = ">=4.1.0" 

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions