Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for Python 3.6 #50

Merged
merged 3 commits into from
Nov 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
run: git fetch origin 'refs/tags/*:refs/tags/*'

- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: "3.10"

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/style.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
persist-credentials: false

- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: "3.10"

Expand All @@ -47,7 +47,7 @@ jobs:
persist-credentials: false

- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: "3.10"

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ jobs:
- macos
- windows
python:
- "3.6"
- "3.7"
- "3.10"
cached:
- true
include:
- python: "3.6"
- python: "3.7"
dependencies: oldest
- python: "3.10"
dependencies: latest
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
run: git fetch origin 'refs/tags/*:refs/tags/*'

- name: Setup Python
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}

Expand Down
4 changes: 1 addition & 3 deletions doc/compatibility.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,5 @@ following releases to ensure compatibility:
* - **Python version**
- **Last compatible release**
* - 3.6
- 1.0.0
* - 3.7
- 1.X.0 (planned for late 2022)
- 0.4.0

2 changes: 1 addition & 1 deletion doc/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ There are different ways to install Ensaio:
Which Python?
-------------

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

We recommend using the
Expand Down
3 changes: 1 addition & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ classifiers =
Topic :: Scientific/Engineering
Topic :: Software Development :: Libraries
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Expand All @@ -38,7 +37,7 @@ project_urls =
[options]
zip_safe = True
packages = find:
python_requires = >=3.6
python_requires = >=3.7
install_requires =
pooch>=1.5.0,<2.0.0

Expand Down