diff --git "a/.changes/unreleased/\360\237\224\222 Security-20230815-203557.yaml" "b/.changes/unreleased/\360\237\224\222 Security-20230815-203557.yaml" new file mode 100644 index 0000000..394a271 --- /dev/null +++ "b/.changes/unreleased/\360\237\224\222 Security-20230815-203557.yaml" @@ -0,0 +1,3 @@ +kind: "\U0001F512 Security" +body: Add Python 3.11 to the list of supported Python versions. +time: 2023-08-15T20:35:57.36959488+03:00 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6b6b11e..7d953df 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: environment: testing strategy: matrix: - python: [3.7, 3.8, 3.9, "3.10"] + python: [3.7, 3.8, 3.9, "3.10", "3.11"] steps: - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4 diff --git a/LICENSE b/LICENSE index 29ca9d5..882310d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright 2022 Delinea Inc. +Copyright 2023 Delinea Inc. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: diff --git a/delinea/__init__.py b/delinea/__init__.py index 1f0cace..0b05eed 100644 --- a/delinea/__init__.py +++ b/delinea/__init__.py @@ -1,3 +1,3 @@ -"""The Delinea DevOps Secret Vault Python SDK""" +"""The Delinea DevOps Secrets Vault Python SDK""" __version__ = "1.0.4" diff --git a/pyproject.toml b/pyproject.toml index d14d707..f6d0636 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,6 +12,7 @@ classifiers = [ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", ] description-file = "README.md" requires = ["requests >= 2.22.0"] diff --git a/tox.ini b/tox.ini index 137f762..413e712 100644 --- a/tox.ini +++ b/tox.ini @@ -6,7 +6,7 @@ # Docs for tox config -> https://tox.readthedocs.io/en/latest/config.html [tox] -envlist = 3.7, 3.8, 3.9, 3.10 +envlist = 3.7, 3.8, 3.9, 3.10, 3.11 isolated_build = True skipsdist = True