Skip to content

Commit

Permalink
Fix python_version markers in Pipfile.lock (#2511)
Browse files Browse the repository at this point in the history
This took way too much effort but in the end I was able to achieve a
(mostly) functional Pipfile.lock ranging from 3.6 to 3.9 🎉
  • Loading branch information
ichard26 committed Sep 28, 2021
1 parent 39b55f7 commit 31a9d8a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ pathspec = ">=0.8.1"
regex = ">=2020.1.8"
tomli = ">=0.2.6, <2.0.0"
typed-ast = "==1.4.2"
typing_extensions = {"python_version <" = "3.10","version >=" = "3.10.0.0"}
typing_extensions = {markers = "python_version < '3.10'", version = ">=3.10.0.0"}
black = {editable = true,extras = ["d"],path = "."}
dataclasses = {"python_version <" = "3.7","version >" = "0.1.3"}
dataclasses = {markers = "python_version < '3.7'", version = ">0.1.3"}
17 changes: 7 additions & 10 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 31a9d8a

Please sign in to comment.