File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -92,12 +92,12 @@ Creating a development environment
92
92
To work with the NumCodecs source code, it is recommended to set up a Python virtual
93
93
environment and install all NumCodecs dependencies using the same versions as are used by
94
94
the core developers and continuous integration services. Assuming you have a Python
95
- 3 interpreter already installed, and have also installed the virtualenv package, and
96
- you have cloned the NumCodecs source code and your current working directory is the root of
97
- the repository, you can do something like the following::
95
+ 3 interpreter already installed matching the ``requires-python `` constraint from
96
+ ``pyproject.toml ``, and you have cloned the NumCodecs source code and your
97
+ current working directory is the root of the repository, you can do something
98
+ like the following::
98
99
99
- $ mkdir -p ~/pyenv/numcodecs-dev
100
- $ virtualenv --no-site-packages --python=/usr/bin/python3.9 ~/pyenv/numcodecs-dev
100
+ $ python3 -m venv ~/pyenv/numcodecs-dev
101
101
$ source ~/pyenv/numcodecs-dev/bin/activate
102
102
$ pip install -e .[docs,test,msgpack,zfpy]
103
103
You can’t perform that action at this time.
0 commit comments