diff --git a/.github/workflows/linux-tests.yml b/.github/workflows/linux-tests.yml index d9aa01a3..f6607284 100644 --- a/.github/workflows/linux-tests.yml +++ b/.github/workflows/linux-tests.yml @@ -20,7 +20,7 @@ jobs: strategy: fail-fast: false matrix: - PYTHON_VERSION: ['3.6', '3.7', '3.8'] + PYTHON_VERSION: ['3.7', '3.8', '3.9', '3.10'] steps: - name: Checkout branch uses: actions/checkout@v1 diff --git a/.github/workflows/macos-tests.yml b/.github/workflows/macos-tests.yml index 3150835d..ba393c5b 100644 --- a/.github/workflows/macos-tests.yml +++ b/.github/workflows/macos-tests.yml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: false matrix: - PYTHON_VERSION: ['3.6', '3.7', '3.8'] + PYTHON_VERSION: ['3.7', '3.8', '3.9'] steps: - name: Checkout branch uses: actions/checkout@v1 diff --git a/.github/workflows/windows-tests.yml b/.github/workflows/windows-tests.yml index b8a0ad13..4e150da8 100644 --- a/.github/workflows/windows-tests.yml +++ b/.github/workflows/windows-tests.yml @@ -19,7 +19,7 @@ jobs: strategy: fail-fast: false matrix: - PYTHON_VERSION: ['3.6', '3.7', '3.8'] + PYTHON_VERSION: ['3.7', '3.8', '3.9', '3.10'] steps: - name: Checkout branch uses: actions/checkout@v1 diff --git a/README.md b/README.md index 02d1e4a9..61362591 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ [![Github build status](https://github.com/spyder-ide/qtawesome/workflows/Tests/badge.svg)](https://github.com/spyder-ide/qtawesome/actions) [![Documentation Status](https://readthedocs.org/projects/qtawesomedocs/badge/?version=latest)](https://qtawesomedocs.readthedocs.io/en/latest/?badge=latest) -*Copyright © 2015–2021 Spyder Project Contributors* +*Copyright © 2015–2022 Spyder Project Contributors* ## Description diff --git a/setup.py b/setup.py index c6f826b1..5d6057a3 100644 --- a/setup.py +++ b/setup.py @@ -34,7 +34,7 @@ packages=['qtawesome'], install_requires=['qtpy'], include_package_data=True, - python_requires='>=3.6', + python_requires='>=3.7', platforms=['OS-independent'], classifiers=[ 'Development Status :: 5 - Production/Stable', @@ -42,7 +42,6 @@ 'Topic :: Software Development :: User Interfaces', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9',