Skip to content

Commit fb292ca

Browse files
author
Theofilos Manitaras
authored
Merge branch 'master' into bugfix/sigterm_unittest_runner
2 parents 0730f66 + 6d54313 commit fb292ca

File tree

5 files changed

+7
-5
lines changed

5 files changed

+7
-5
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
dist: xenial
22
language: python
33
python:
4-
- "3.5"
54
- "3.6"
65
- "3.7"
76
- "3.8"

docs/started.rst

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,16 @@ Getting Started
55
Requirements
66
------------
77

8-
* Python 3.5 or higher. Python 2 is not supported.
8+
* Python 3.6 or higher. Python 2 is not supported.
99

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

14+
.. note::
15+
.. versionchanged:: 3.0
16+
Support for Python 3.5 has been dropped.
17+
1418
Optional
1519
~~~~~~~~
1620

reframe/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

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

1414
# Check python version
1515
if sys.version_info[:3] < MIN_PYTHON_VERSION:

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
jsonschema
2-
pytest>=3.5.0
2+
pytest>=5.0.0
33
coverage
44
setuptools

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
scripts=['bin/reframe'],
2626
classifiers=(
2727
'Development Status :: 5 - Production/Stable',
28-
'Programming Language :: Python :: 3.5',
2928
'Programming Language :: Python :: 3.6',
3029
'Programming Language :: Python :: 3.7',
3130
'Programming Language :: Python :: 3.8',

0 commit comments

Comments
 (0)