Skip to content

Commit ab15925

Browse files
Update project_metadata.md
1 parent d4cd167 commit ab15925

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

episodes/project_metadata.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -70,12 +70,12 @@ greet_me = { path = ".", editable = true }
7070

7171
`[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.
7272

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.
7474

7575
```toml
7676
[project]
7777
name = "greet_me"
78-
requires-python = ">=3.10"
78+
requires-python = ">=3.11"
7979

8080
[tool.pixi.workspace]
8181
channels = ["conda-forge"]
@@ -86,7 +86,7 @@ requests = ">=2.31.0,<3"
8686
```
8787
You can specify a range or multiple supported Python versions using the syntax below.
8888
```toml
89-
requires-python = ">=3.10, <3.12"
89+
requires-python = ">=3.11, <3.12"
9090
```
9191
If you were using `pixi.toml` file, the equivalent syntax would be
9292
```toml
@@ -96,7 +96,7 @@ channels = ["conda-forge"]
9696
platforms = ["linux-64", "win-64"]
9797

9898
[dependencies]
99-
python = ">=3.10"
99+
python = ">=3.11"
100100
```
101101
- Tasks
102102

0 commit comments

Comments
 (0)