Skip to content
This repository was archived by the owner on Jun 5, 2024. It is now read-only.

MNT: Drop Python 3.6 #46

Merged
merged 1 commit into from
Feb 5, 2023
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
34 changes: 17 additions & 17 deletions .github/workflows/ci_workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,36 +15,36 @@ jobs:
matrix:
include:
- os: ubuntu-latest
python-version: 3.6
toxenv: py36-test-pytest46
- os: windows-latest
python-version: 3.6
toxenv: py36-test-pytest50
- os: macos-latest
python-version: 3.7
toxenv: py37-test-pytest51
- os: ubuntu-latest
python-version: 3.7
toxenv: py37-test-pytest52
toxenv: py37-test-pytest46
- os: windows-latest
python-version: 3.7
toxenv: py37-test-pytest50
- os: macos-latest
python-version: 3.8
toxenv: py38-test-pytest53
toxenv: py38-test-pytest51
- os: ubuntu-latest
python-version: 3.8
toxenv: py38-test-pytest60
- os: macos-latest
toxenv: py38-test-pytest52
- os: windows-latest
python-version: 3.9
toxenv: py39-test-pytest61
toxenv: py39-test-pytest53
- os: ubuntu-latest
python-version: 3.9
toxenv: py39-test-pytestdev
toxenv: py39-test-pytest62
- os: macos-latest
python-version: '3.10'
toxenv: py310-test-pytest72
- os: ubuntu-latest
python-version: '3.11'
toxenv: py311-test-pytestdev

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Tox
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:
if: ((github.event_name == 'push' && startsWith(github.ref, 'refs/tags')) || contains(github.event.pull_request.labels.*.name, 'Build wheels'))

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-python@v2
- uses: actions/setup-python@v4
with:
python-version: 3.8

Expand Down
2 changes: 2 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
- Replaced ``distutils`` with ``packaging``; the latter now a required
dependency. [#43]

- Dropped support for Python 3.6. [#46]

0.5.0 (2020-04-16)
==================

Expand Down
6 changes: 4 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@ classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
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
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: Implementation :: CPython
Topic :: Software Development :: Testing
Topic :: Utilities
Expand All @@ -27,7 +29,7 @@ keywords = detect, open, file, handle, psutil, pytest, py.test
[options]
zip_safe = False
packages = find:
python_requires = >=3.6
python_requires = >=3.7
setup_requires =
setuptools_scm
install_requires =
Expand Down
6 changes: 3 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tox]
envlist =
py{36,37,38,39}-test{,-devdeps}
py{37,38,39,310,311}-test{,-devdeps}
codestyle
requires =
setuptools >= 30.3.0
Expand All @@ -16,8 +16,8 @@ deps =
pytest51: pytest==5.1.*
pytest52: pytest==5.2.*
pytest53: pytest==5.3.*
pytest60: pytest==6.0.*
pytest61: pytest==6.1.*
pytest62: pytest==6.2.*
pytest72: pytest==7.2.*
pytestdev: git+https://github.com/pytest-dev/pytest#egg=pytest

commands =
Expand Down