Skip to content

Commit

Permalink
feat: add python 3.10 support and remove python 3.5 support
Browse files Browse the repository at this point in the history
  • Loading branch information
rgonalo committed Nov 6, 2021
1 parent 98025cc commit 72c97f5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.5, 3.6, 3.7, 3.8, 3.9]
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
fail-fast: false

steps:
Expand Down Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.rst
Expand Up @@ -6,6 +6,9 @@ v2.2.1

*Release date: In development*

- Add support for python 3.10
- Remove Python 3.5 support (Python 3.5 reached the end of its life on September 13th, 2020)

v2.2.0
------

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -64,11 +64,11 @@ def get_long_description():
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.5',
'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',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
'Topic :: Software Development :: Testing',
Expand Down

0 comments on commit 72c97f5

Please sign in to comment.