Skip to content

Commit

Permalink
change min supported version to py3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
MridulS committed Jan 31, 2022
1 parent b023ba5 commit d351010
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -35,7 +35,7 @@ To start using hvplot have a look at the [installation instructions](https://hvp

## Installation

hvPlot supports Python 3.7 on Linux, Windows, or Mac and can be installed with ``conda``:
hvPlot supports Python 3.6 and 3.7 on Linux, Windows, or Mac and can be installed with ``conda``:

```
conda install -c pyviz hvplot
Expand Down
2 changes: 1 addition & 1 deletion doc/developer_guide/index.rst
Expand Up @@ -79,7 +79,7 @@ more consistent and general.
conda create -n hvplot_dev -c pyviz pyctdev python=3.6
Specify the desired Python version, currently hvPlot officially
supports Python 3.7. Once the environment has been
supports Python 3.6 and 3.7. Once the environment has been
created you can activate it with:

.. code-block:: sh
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Expand Up @@ -113,6 +113,7 @@ def get_setup_version(reponame):
classifiers = [
"License :: OSI Approved :: BSD License",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
Expand All @@ -121,7 +122,7 @@ def get_setup_version(reponame):
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Software Development :: Libraries"],
python_requires=">=3.7",
python_requires=">=3.6",
install_requires=install_requires,
extras_require=extras_require,
tests_require=extras_require['tests'],
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -3,7 +3,7 @@

[tox]
# python version test group extra envs extra commands
envlist = {py37,py38}-{flakes,unit,examples,examples_extra,all}-{default}-{dev,pkg}
envlist = {py36,py37,py38}-{flakes,unit,examples,examples_extra,all}-{default}-{dev,pkg}

[_flakes]
description = Flake check python and notebooks
Expand Down

0 comments on commit d351010

Please sign in to comment.