From 2cf51376893e62ead4844031d2218f71a2804aa3 Mon Sep 17 00:00:00 2001 From: Andrii Zakurenyi Date: Tue, 15 Aug 2023 20:36:39 +0300 Subject: [PATCH 1/2] chore: add Python 3.11 to supported versions of Python --- .../unreleased/\360\237\224\222 Security-20230815-203557.yaml" | 3 +++ .github/workflows/test.yml | 2 +- LICENSE | 2 +- pyproject.toml | 1 + tox.ini | 2 +- 5 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 ".changes/unreleased/\360\237\224\222 Security-20230815-203557.yaml" 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 929b3c3..f65fc75 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -8,7 +8,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@v3 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/pyproject.toml b/pyproject.toml index 2b594d0..a9812f9 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 From b157bfbdc7fbe243a24a745238b02d995007da68 Mon Sep 17 00:00:00 2001 From: Andrii Zakurenyi Date: Tue, 15 Aug 2023 22:00:01 +0300 Subject: [PATCH 2/2] fix typo --- delinea/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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"