Skip to content

Commit 6c723b1

Browse files
committed
Update min Python version to 3.8
1 parent 9bc70f8 commit 6c723b1

File tree

7 files changed

+5
-33
lines changed

7 files changed

+5
-33
lines changed

.github/workflows/ci.yml

-6
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,6 @@ jobs:
1313
strategy:
1414
matrix:
1515
include:
16-
- python-version: '3.5'
17-
toxenv: py35
18-
- python-version: '3.6'
19-
toxenv: py36
20-
- python-version: '3.7'
21-
toxenv: py37
2216
- python-version: '3.8'
2317
toxenv: py38
2418
- python-version: '3.9'

.travis.yml

-18
This file was deleted.

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM python:3.7-slim-stretch
1+
FROM python:3.10-slim-bullseye
22

33
ADD . /app
44
WORKDIR /app
@@ -20,4 +20,4 @@ RUN pip --no-cache-dir --trusted-host pypi.org install --upgrade -r /app/require
2020

2121
USER voc
2222

23-
ENTRYPOINT ["dumb-init", "--", "voc", "mqtt"]
23+
ENTRYPOINT ["dumb-init", "--", "voc", "mqtt"]

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Also contains an MQTT gateway for publishing information and bidirectional commu
99

1010
## system requirements
1111

12-
- At least python 3.6 or higher
12+
- At least python 3.8 or higher
1313

1414
## how to use
1515

setup.cfg

+1-2
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ import-order-style = pep8
1010

1111
[pytype]
1212
inputs = voc volvooncall
13-
python_version = 3.6
13+
python_version = 3.8
1414
disable =
1515
module-attr,
1616
attribute-error,
1717
import-error
18-

tox.ini

-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
[tox]
22
envlist=
3-
py35
4-
py36
5-
py37
63
py38
74
py39
85
py310

volvooncall/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from .volvooncall import Connection, __version__ # noqa: F401
44
from .dashboard import Dashboard # noqa: F401
55

6-
MIN_PYTHON_VERSION = (3, 5, 3)
6+
MIN_PYTHON_VERSION = (3, 8, 0)
77

88
_ = version_info >= MIN_PYTHON_VERSION or exit(
99
"Python %d.%d.%d required" % MIN_PYTHON_VERSION

0 commit comments

Comments
 (0)