-
Notifications
You must be signed in to change notification settings - Fork 219
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5985b6f
commit fa00455
Showing
3 changed files
with
130 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
22 changes: 22 additions & 0 deletions
22
...ct/manifest/snapshots/pixi__project__manifest__pyproject__tests__add_pypi_dependency.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
source: src/project/manifest/pyproject.rs | ||
assertion_line: 306 | ||
expression: manifest.document.to_string() | ||
--- | ||
[project] | ||
name = "flask-hello-world-pyproject" | ||
version = "0.1.0" | ||
description = "Example how to get started with flask in a pixi environment." | ||
license = "MIT OR Apache-2.0" | ||
homepage = "https://github.com/prefix/pixi" | ||
readme = "README.md" | ||
requires-python = ">=3.11" | ||
dependencies = ["flask==2.*", "numpy >=3.12"] | ||
|
||
[tool.pixi.project] | ||
name = "flask-hello-world-pyproject" | ||
channels = ["conda-forge"] | ||
platforms = ["linux-64"] | ||
|
||
[tool.pixi.tasks] | ||
start = "python -m flask run --port=5050" |
22 changes: 22 additions & 0 deletions
22
...manifest/snapshots/pixi__project__manifest__pyproject__tests__remove_pypi_dependency.snap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
--- | ||
source: src/project/manifest/pyproject.rs | ||
assertion_line: 337 | ||
expression: manifest.document.to_string() | ||
--- | ||
[project] | ||
name = "flask-hello-world-pyproject" | ||
version = "0.1.0" | ||
description = "Example how to get started with flask in a pixi environment." | ||
license = "MIT OR Apache-2.0" | ||
homepage = "https://github.com/prefix/pixi" | ||
readme = "README.md" | ||
requires-python = ">=3.11" | ||
dependencies = [] | ||
|
||
[tool.pixi.project] | ||
name = "flask-hello-world-pyproject" | ||
channels = ["conda-forge"] | ||
platforms = ["linux-64"] | ||
|
||
[tool.pixi.tasks] | ||
start = "python -m flask run --port=5050" |