Skip to content

Commit 855c41e

Browse files
committed
Drop support for Python 3.7
1 parent 98adc88 commit 855c41e

File tree

4 files changed

+12
-3
lines changed

4 files changed

+12
-3
lines changed

.flake8

+1
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@ exclude =
33
__pycache__,
44
ignore = E203
55
max-line-length = 120
6+
max-complexity = 10

.github/workflows/CI.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: [3.7, 3.11.1]
12-
rf-version: [5.0.1, 6.0.2]
11+
python-version: [3.8, 3.11.1]
12+
rf-version: [5.0.1, 6.1.0]
1313

1414
steps:
1515
- uses: actions/checkout@v3

mypy.ini

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
[mypy]
2+
python_version = 3.8
3+
warn_unused_ignores = True
4+
no_implicit_optional = True
5+
check_untyped_defs = True
6+
7+
[mypy-robot.*]
8+
ignore_missing_imports = True

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@
1111
License :: OSI Approved :: Apache Software License
1212
Operating System :: OS Independent
1313
Programming Language :: Python :: 3
14-
Programming Language :: Python :: 3.7
1514
Programming Language :: Python :: 3.8
1615
Programming Language :: Python :: 3.9
1716
Programming Language :: Python :: 3.10
17+
Programming Language :: Python :: 3.11
1818
Programming Language :: Python :: 3 :: Only
1919
Programming Language :: Python :: Implementation :: CPython
2020
Programming Language :: Python :: Implementation :: PyPy

0 commit comments

Comments
 (0)