Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/maintainer/adding_pkgs.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ You can e.g. specify not to build …

```recipe
build:
skip: match(python, "<3.12)
skip: match(python, "<3.12")
```
</RecipeTabs>

Expand Down Expand Up @@ -431,7 +431,7 @@ Normally Python packages should use this line:

```recipe
build:
script: "{{ PYTHON }} -m pip install . -vv"
script: "{{ PYTHON }} -m pip install . -vv --no-deps --no-build-isolation"

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As this is the v0 recipe instructions, keep the flags given #2864 (comment)

```

```recipe
Expand All @@ -454,8 +454,8 @@ These options should be used to ensure a clean installation of the package witho
dependencies. This helps make sure that we're only including this package,
and not accidentally bringing any dependencies along into the conda package.

Usually pure-Python packages only require `python`, `setuptools` and `pip`
as `host` requirements; the real package dependencies are only
Usually pure-Python packages only require `python`, a build system (e.g. `setuptools`),
and `pip` as `host` requirements; the real package dependencies are only
`run` requirements.

<a id="requirements"></a>
Expand Down