Skip to content

Commit

Permalink
environment.yml typo in docs
Browse files Browse the repository at this point in the history
Fixes #3052
  • Loading branch information
axsaucedo authored Mar 15, 2021
1 parent 39f5386 commit 1a94958
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions doc/source/python/python_wrapping_s2i.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ To use our s2i builder image to package your python model you will need:
* Your model's dependencies and environment, which can be described using either of:
- `requirements.txt`
- `setup.py`
- `environment.yaml`
- `environment.yml`
* `.s2i/environment` - model definitions used by the s2i builder to correctly wrap your model

We will go into detail for each of these steps:
Expand All @@ -41,7 +41,7 @@ Your source code should contain a python file which defines a class of the same
### Dependencies

You can describe your model's dependencies using either of: `requirements.txt`,
`setup.py` or `environment.yaml`.
`setup.py` or `environment.yml`.

#### requirements.txt

Expand All @@ -65,9 +65,9 @@ setup(
)
```

#### environment.yaml
#### environment.yml

Describe your Conda environment using an `environment.yaml` file:
Describe your Conda environment using an `environment.yml` file:

```yaml
name: my-conda-environment
Expand Down

0 comments on commit 1a94958

Please sign in to comment.