Skip to content

Commit 15b880a

Browse files
authored
Drop support for Python 3.6 (#50)
Actions is failing on Ubuntu complaining that Python 3.6 is no longer available. Update the Python action to v4 and drop support for Python 3.6 since we could have done this a while ago.
1 parent cc0b26d commit 15b880a

File tree

6 files changed

+9
-12
lines changed

6 files changed

+9
-12
lines changed

.github/workflows/pypi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: git fetch origin 'refs/tags/*:refs/tags/*'
4646

4747
- name: Setup Python
48-
uses: actions/setup-python@v2
48+
uses: actions/setup-python@v4
4949
with:
5050
python-version: "3.10"
5151

.github/workflows/style.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
persist-credentials: false
2626

2727
- name: Setup Python
28-
uses: actions/setup-python@v2
28+
uses: actions/setup-python@v4
2929
with:
3030
python-version: "3.10"
3131

@@ -47,7 +47,7 @@ jobs:
4747
persist-credentials: false
4848

4949
- name: Setup Python
50-
uses: actions/setup-python@v2
50+
uses: actions/setup-python@v4
5151
with:
5252
python-version: "3.10"
5353

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ jobs:
4444
- macos
4545
- windows
4646
python:
47-
- "3.6"
47+
- "3.7"
4848
- "3.10"
4949
cached:
5050
- true
5151
include:
52-
- python: "3.6"
52+
- python: "3.7"
5353
dependencies: oldest
5454
- python: "3.10"
5555
dependencies: latest
@@ -91,7 +91,7 @@ jobs:
9191
run: git fetch origin 'refs/tags/*:refs/tags/*'
9292

9393
- name: Setup Python
94-
uses: actions/setup-python@v2
94+
uses: actions/setup-python@v4
9595
with:
9696
python-version: ${{ matrix.python }}
9797

doc/compatibility.rst

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,5 @@ following releases to ensure compatibility:
5353
* - **Python version**
5454
- **Last compatible release**
5555
* - 3.6
56-
- 1.0.0
57-
* - 3.7
58-
- 1.X.0 (planned for late 2022)
56+
- 0.4.0
5957

doc/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ There are different ways to install Ensaio:
3939
Which Python?
4040
-------------
4141

42-
You'll need **Python >= 3.6** (see :ref:`python-versions` for information on
42+
You'll need **Python >= 3.7** (see :ref:`python-versions` for information on
4343
Python version compatibility).
4444

4545
We recommend using the

setup.cfg

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ classifiers =
2323
Topic :: Scientific/Engineering
2424
Topic :: Software Development :: Libraries
2525
Programming Language :: Python :: 3 :: Only
26-
Programming Language :: Python :: 3.6
2726
Programming Language :: Python :: 3.7
2827
Programming Language :: Python :: 3.8
2928
Programming Language :: Python :: 3.9
@@ -38,7 +37,7 @@ project_urls =
3837
[options]
3938
zip_safe = True
4039
packages = find:
41-
python_requires = >=3.6
40+
python_requires = >=3.7
4241
install_requires =
4342
pooch>=1.5.0,<2.0.0
4443

0 commit comments

Comments
 (0)