@@ -90,7 +90,7 @@ you have cloned the NumCodecs source code and your current working directory is
9090the repository, you can do something like the following::
9191
9292 $ mkdir -p ~/pyenv/numcodecs-dev
93- $ virtualenv --no-site-packages --python=/usr/bin/python3.7 ~/pyenv/numcodecs-dev
93+ $ virtualenv --no-site-packages --python=/usr/bin/python3.8 ~/pyenv/numcodecs-dev
9494 $ source ~/pyenv/numcodecs-dev/bin/activate
9595 $ pip install -r requirements_dev.txt
9696 $ python setup.py build_ext --inplace
@@ -145,11 +145,11 @@ To also run the doctests within docstrings, run::
145145Tests can be run under different Python versions using tox. E.g. (assuming you have the
146146corresponding Python interpreters installed on your system)::
147147
148- $ tox -e py27,py35,py36,py37
148+ $ tox -e py27,py35,py36,py37,py38
149149
150- NumCodecs currently supports Python 2.7 and Python 3.5-3.7 , so the above command must
151- succeed before code can be accepted into the main code base. Note that only the py37
152- tox environment runs the doctests, i.e., doctests only need to succeed under Python 3.7 .
150+ NumCodecs currently supports Python 2.7 and Python 3.5-3.8 , so the above command must
151+ succeed before code can be accepted into the main code base. Note that only the py38
152+ tox environment runs the doctests, i.e., doctests only need to succeed under Python 3.8 .
153153
154154All tests are automatically run via Travis (Linux) and AppVeyor (Windows) continuous
155155integration services for every pull request. Tests must pass under both services before
@@ -164,14 +164,14 @@ Conformance can be checked by running::
164164
165165 $ flake8 --max-line-length=100 numcodecs
166166
167- This is automatically run when invoking ``tox -e py37 ``.
167+ This is automatically run when invoking ``tox -e py38 ``.
168168
169169Test coverage
170170~~~~~~~~~~~~~
171171
172172NumCodecs maintains 100% test coverage under the latest Python stable release (currently
173- Python 3.7 ). Both unit tests and docstring doctests are included when computing
174- coverage. Running ``tox -e py37 `` will automatically run the test suite with coverage
173+ Python 3.8 ). Both unit tests and docstring doctests are included when computing
174+ coverage. Running ``tox -e py38 `` will automatically run the test suite with coverage
175175and produce a coverage report. This should be 100% before code can be accepted into the
176176main code base.
177177
@@ -185,7 +185,7 @@ Documentation
185185Docstrings for user-facing classes and functions should follow the `numpydoc
186186<https://github.com/numpy/numpy/blob/master/doc/HOWTO_DOCUMENT.rst.txt> `_ standard,
187187including sections for Parameters and Examples. All examples will be run as doctests
188- under Python 3.7 .
188+ under Python 3.8 .
189189
190190NumCodecs uses Sphinx for documentation, hosted on readthedocs.org. Documentation is
191191written in the RestructuredText markup language (.rst files) in the ``docs `` folder.
0 commit comments