Skip to content

Commit 8d1e08f

Browse files
hugovkaaltat
authored andcommitted
Drop support for EOL Python 2.7 and 3.5
1 parent c950b66 commit 8d1e08f

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,13 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: [2.7, 3.6, 3.9, pypy3]
11+
python-version: [3.6, 3.9, pypy3]
1212
rf-version: [3.1.2, 3.2.2]
1313

1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Set up Python ${{ matrix.python-version }} with Robot Framework ${{ matrix.rf-version }}
17-
uses: actions/setup-python@v1
17+
uses: actions/setup-python@v2
1818
with:
1919
python-version: ${{ matrix.python-version }}
2020
- name: Install dependencies
@@ -27,7 +27,6 @@ jobs:
2727
- name: Run flake8
2828
run: |
2929
flake8 --max-line-length=110 src/
30-
if: matrix.python-version != '2.7'
3130
- name: Run unit tests
3231
run: |
3332
python utest/run.py

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@
1010
Development Status :: 5 - Production/Stable
1111
License :: OSI Approved :: Apache Software License
1212
Operating System :: OS Independent
13-
Programming Language :: Python :: 2
14-
Programming Language :: Python :: 2.7
1513
Programming Language :: Python :: 3
1614
Programming Language :: Python :: 3.6
1715
Programming Language :: Python :: 3.7
1816
Programming Language :: Python :: 3.8
1917
Programming Language :: Python :: 3.9
18+
Programming Language :: Python :: 3 :: Only
2019
Programming Language :: Python :: Implementation :: CPython
2120
Programming Language :: Python :: Implementation :: PyPy
2221
Topic :: Software Development :: Testing
@@ -41,7 +40,7 @@
4140
keywords = 'robotframework testing testautomation library development',
4241
platforms = 'any',
4342
classifiers = CLASSIFIERS,
44-
python_requires = '>=2.7.*, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4',
43+
python_requires = '>=3.6, <4',
4544
package_dir = {'': 'src'},
4645
packages = find_packages('src'),
4746
py_modules = ['robotlibcore'],

0 commit comments

Comments
 (0)