Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
dist: xenial
language: python
python:
- "3.5"
- "3.6"
- "3.7"
- "3.8"
Expand Down
6 changes: 5 additions & 1 deletion docs/started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@ Getting Started
Requirements
------------

* Python 3.5 or higher. Python 2 is not supported.
* Python 3.6 or higher. Python 2 is not supported.

.. note::
.. versionchanged:: 2.8
A functional TCL modules system is no more required. ReFrame can now operate without a modules system at all.

.. note::
.. versionchanged:: 3.0
Support for Python 3.5 has been dropped.

Optional
~~~~~~~~

Expand Down
2 changes: 1 addition & 1 deletion reframe/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

VERSION = '3.0-dev2'
INSTALL_PREFIX = os.path.abspath(os.path.join(os.path.dirname(__file__), '..'))
MIN_PYTHON_VERSION = (3, 5, 0)
MIN_PYTHON_VERSION = (3, 6, 0)

# Check python version
if sys.version_info[:3] < MIN_PYTHON_VERSION:
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
jsonschema
pytest>=3.5.0
pytest>=5.0.0
coverage
setuptools
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
scripts=['bin/reframe'],
classifiers=(
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
Expand Down