You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on May 24, 2022. It is now read-only.
Our project maintains compatibility across Python versions 2.6-3.7. This is a portion of our requirements.txt:
pytest==3.2.5;python_version<"2.7" or python_version=="3.3"
pytest==4.6.3;python_version<"3.5" and python_version>="2.7"
pytest==5.1.2;python_version>="3.5"
We want Dependabot to ignore the first two lines but not ignore the third.
We modified the file to use < for the purpose of helping Dependabot ignore these lines. Based on #658, it seems like the < should do the trick. However, Dependabot does not ignore the second line.
Can you offer any suggestion?
The text was updated successfully, but these errors were encountered:
YakDriver
changed the title
Not ignoring same Python dependency with various markers, versions
Not ignoring Python dependency
Sep 10, 2019
Our project maintains compatibility across Python versions 2.6-3.7. This is a portion of our
requirements.txt
:We want Dependabot to ignore the first two lines but not ignore the third.
We modified the file to use
<
for the purpose of helping Dependabot ignore these lines. Based on #658, it seems like the<
should do the trick. However, Dependabot does not ignore the second line.Can you offer any suggestion?
The text was updated successfully, but these errors were encountered: