Skip to content

Commit

Permalink
Add support for Python 3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
gregorjerse committed Jun 3, 2021
1 parent 8b950ff commit 9c1b361
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
9 changes: 9 additions & 0 deletions docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,15 @@ file.
This project adheres to `Semantic Versioning <http://semver.org/>`_.


==========
Unreleased
==========

Added
-----
- Add support for Python 3.9


==================
3.1.0 - 2021-02-09
==================
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
keywords='resolwe runtime utilities library',
py_modules=['resolwe_runtime_utils'],
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py{36,37,38},docs,linters,packaging
envlist = py{36,37,38,39},docs,linters,packaging
skip_missing_interpreters = True
minversion = 3.5.0
isolated_build = true
Expand All @@ -17,6 +17,7 @@ basepython =
py36,docs,linters,packaging: python3.6
py37: python3.7
py38: python3.8
py38: python3.9

extras =
docs: docs
Expand All @@ -32,7 +33,7 @@ commands_pre =
commands =
# General tests commands:
# Run tests.
py{36,37,38}: pytest --verbose --cov=resolwe_runtime_utils
py{36,37,38,39}: pytest --verbose --cov=resolwe_runtime_utils

# Docs commands:
# Build documentation.
Expand Down

0 comments on commit 9c1b361

Please sign in to comment.