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
`[tool.pixi.workspace]`: This section controls where packages come from and what platforms Pixi should resolve for. It is also used to define project-wide settings.
72
72
73
-
`[tool.pixi.pypi-dependencies]` : Thus section is used to delare the depencecis of our project that come from Python Package Index. In short they are libraries necessary for our project and will be installed via pip.
73
+
`[tool.pixi.pypi-dependencies]` : This section is used to delare the dependencies of our project that will be installed via Pip or similar tools from Python Package Index. In short they are libraries necessary for our project and will be installed via pip.
74
74
75
75
```toml
76
76
[project]
77
77
name = "greet_me"
78
-
requires-python = ">=3.10"
78
+
requires-python = ">=3.11"
79
79
80
80
[tool.pixi.workspace]
81
81
channels = ["conda-forge"]
@@ -86,7 +86,7 @@ requests = ">=2.31.0,<3"
86
86
```
87
87
You can specify a range or multiple supported Python versions using the syntax below.
88
88
```toml
89
-
requires-python = ">=3.10, <3.12"
89
+
requires-python = ">=3.11, <3.12"
90
90
```
91
91
If you were using `pixi.toml` file, the equivalent syntax would be
0 commit comments