Skip to content

Commit 6903e6e

Browse files
committed
Drop support of Python 3.6
It reached its end of life in December 2021.
1 parent a1ea48a commit 6903e6e

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: [3.6, 3.7, 3.8, 3.9, "3.10"]
13+
python-version: [3.7, 3.8, 3.9, "3.10"]
1414

1515
steps:
1616
- uses: actions/checkout@v2

docs/getting_started.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Getting started
22
===============
33

4-
You must have Python 3.6 or later, and a relatively recent version of
4+
You must have Python 3.7 or later, and a relatively recent version of
55
Git. Git 2.30 is known to work, but older versions will most likely
66
work as well.
77

setup.cfg

+1-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ classifiers =
1717
Programming Language :: Python
1818
Programming Language :: Python :: 3
1919
Programming Language :: Python :: 3 :: Only
20-
Programming Language :: Python :: 3.6
2120
Programming Language :: Python :: 3.7
2221
Programming Language :: Python :: 3.8
2322
Programming Language :: Python :: 3.9
@@ -30,9 +29,8 @@ project_urls =
3029
Bug Tracker = https://github.com/Polyconseil/cogite/issues
3130

3231
[options]
33-
python_requires = >=3.6
32+
python_requires = >=3.7
3433
install_requires =
35-
dataclasses; python_version<"3.7"
3634
importlib_metadata; python_version<"3.8"
3735
prompt_toolkit
3836
toml

0 commit comments

Comments
 (0)