terrencepreilly / darglint

A python documentation linter which checks that the docstring description matches the definition.
MIT License
481 stars 41 forks source link

Set Python to >=3.6 Instead of ^3.6 #207

Open rbebb opened 1 year ago

rbebb commented 1 year ago

Since darglint has its python version set to ^3.6, all downstream projects that use poetry have to set their python versions to ^3.6/>=3.6,<4.0. While this doesn't necessarily cause any issues, it would be nice to be able to leave the version range open by using >=3.6.

staticdev commented 1 year ago

See https://github.com/terrencepreilly/darglint/pull/190