Skip to content

Commit

Permalink
Update examples
Browse files Browse the repository at this point in the history
Use a space between the package name and the pin
in tox `requires` key
  • Loading branch information
masenf committed Jan 15, 2023
1 parent 683e4d9 commit ec53003
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ virtualenv for each test environment.

#### Install/provision

* Specify `requires = tox-ignore-env-name-mismatch~=0.2.0` in the `[tox]`
* Specify `requires = tox-ignore-env-name-mismatch ~= 0.2.0` in the `[tox]`
section of `tox.ini`

This will cause `tox` to provision a new virtualenv for `tox` itself and other
Expand All @@ -47,7 +47,7 @@ CLI](https://tox.wiki/en/latest/cli_interface.html#tox---no-provision)).
```
[tox]
envlist = py39,py310,py311,lint,format,types
requires = tox-ignore-env-name-mismatch~=0.2.0
requires = tox-ignore-env-name-mismatch ~= 0.2.0
[testenv]
deps = pytest
Expand Down
2 changes: 1 addition & 1 deletion examples/tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist = py39,py310,py311,lint,format,types
requires = tox-ignore-env-name-mismatch
requires = tox-ignore-env-name-mismatch ~= 0.2.0

[testenv]
deps = pytest
Expand Down

0 comments on commit ec53003

Please sign in to comment.