diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7a470ff8..ba1a8000 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -78,7 +78,7 @@ jobs: - unit - venv include: - - python_version: "3.5" + - python_version: "3.6" repo_type: venv steps: diff --git a/README.md b/README.md index 7452bdab..ba18b7b1 100644 --- a/README.md +++ b/README.md @@ -16,15 +16,13 @@ For support questions please search or post to https://discourse.jupyter.org/c/b See the [contributing guide](CONTRIBUTING.md) for information on contributing to repo2docker. -See [our roadmap](https://repo2docker.readthedocs.io/en/latest/contributing/roadmap.html) -to learn about where the project is heading. ## Using repo2docker ### Prerequisites 1. Docker to build & run the repositories. The [community edition](https://store.docker.com/search?type=edition&offering=community) is recommended. -2. Python 3.5+. +2. Python 3.6+. Supported on Linux and macOS. [See documentation note about Windows support.](http://repo2docker.readthedocs.io/en/latest/install.html#note-about-windows-support) diff --git a/docs/source/install.rst b/docs/source/install.rst index c7ce7293..48b31a50 100644 --- a/docs/source/install.rst +++ b/docs/source/install.rst @@ -3,7 +3,7 @@ Installing ``repo2docker`` ========================== -repo2docker requires Python 3.5 and above on Linux and macOS. See +repo2docker requires Python 3.6 or above on Linux and macOS. See :ref:`below ` for more information about Windows support. Prerequisite: Docker diff --git a/setup.py b/setup.py index efa460a9..5084b486 100644 --- a/setup.py +++ b/setup.py @@ -56,7 +56,7 @@ setup( "toml", "semver", ], - python_requires=">=3.5", + python_requires=">=3.6", author="Project Jupyter Contributors", author_email="jupyter@googlegroups.com", url="https://repo2docker.readthedocs.io/en/latest/",