Skip to content

Commit

Permalink
Add support for Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
gregorjerse committed Aug 17, 2023
1 parent 893b7c5 commit 51da93f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
4 changes: 4 additions & 0 deletions docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@ All notable changes to this project are documented in this file.
Unreleased
==========

Added
-----
- Add support for ``Python 3.11``

Changed
-------
- Change login to use the new SAML authentication method
Expand Down
5 changes: 3 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ authors = [
dynamic = ["version"]
readme = "README.rst"
license = {file = "LICENSE"}
requires-python = ">=3.7, <3.11"
requires-python = ">=3.7, <3.12"
keywords = [
"bio",
"bioinformatics",
Expand All @@ -38,6 +38,7 @@ classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"aiohttp",
Expand Down Expand Up @@ -82,7 +83,7 @@ documentation = "https://resdk.readthedocs.io/en/latest/"
[tool.setuptools_scm]

[tool.black]
target-version = ["py37", "py38", "py39", "py310"]
target-version = ["py37", "py38", "py39", "py310", "py311"]

[tool.pydocstyle]
add-select = "D404"
Expand Down

0 comments on commit 51da93f

Please sign in to comment.