Skip to content

Commit

Permalink
Add one more example file, extend editable example.
Browse files Browse the repository at this point in the history
Signed-off-by: Oz Tiram <oz.tiram@gmail.com>
  • Loading branch information
oz123 committed Jun 9, 2024
1 parent a6db85d commit 6939a9e
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 2 deletions.
20 changes: 20 additions & 0 deletions examples/Pipfile.invalid.editable
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
myadmin = {path = "admin", editable = true}
your-site = {editable="True", path="./site"}

[dev-packages]
pytest = "*"

[tools]
myadmin = {path = "admin", editable = true}

[requires]
python_version = "3.12"

[pipenv]
allow_prereleases = true
21 changes: 19 additions & 2 deletions examples/Pipfile.ok.editable
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"

[packages]
parver = '*'
foo = {path = ".", editable = true, extras = ["tests", "dev"]}
myadmin = {path = "admin", editable = true}
your-site = {editable = true, path="./site", extras = ["tests", "dev"]}

[dev-packages]
pytest = "*"

[tools]
myadmin = {path = "admin", editable = true}

[requires]
python_version = "3.12"

[pipenv]
allow_prereleases = true

0 comments on commit 6939a9e

Please sign in to comment.