Skip to content

Commit f6e5fd5

Browse files
chore: add Python 3.11 to supported versions of Python (#22)
Co-authored-by: Tylere Zimmerman <100804646+tylerezimmerman@users.noreply.github.com>
1 parent 0c4702f commit f6e5fd5

6 files changed

Lines changed: 8 additions & 4 deletions

File tree

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
kind: "\U0001F512 Security"
2+
body: Add Python 3.11 to the list of supported Python versions.
3+
time: 2023-08-15T20:35:57.36959488+03:00

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
environment: testing
1212
strategy:
1313
matrix:
14-
python: [3.7, 3.8, 3.9, "3.10"]
14+
python: [3.7, 3.8, 3.9, "3.10", "3.11"]
1515

1616
steps:
1717
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright 2022 Delinea Inc.
1+
Copyright 2023 Delinea Inc.
22

33
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:
44

delinea/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
"""The Delinea DevOps Secret Vault Python SDK"""
1+
"""The Delinea DevOps Secrets Vault Python SDK"""
22

33
__version__ = "1.0.4"

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ classifiers = [
1212
"Programming Language :: Python :: 3.8",
1313
"Programming Language :: Python :: 3.9",
1414
"Programming Language :: Python :: 3.10",
15+
"Programming Language :: Python :: 3.11",
1516
]
1617
description-file = "README.md"
1718
requires = ["requests >= 2.22.0"]

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# Docs for tox config -> https://tox.readthedocs.io/en/latest/config.html
77

88
[tox]
9-
envlist = 3.7, 3.8, 3.9, 3.10
9+
envlist = 3.7, 3.8, 3.9, 3.10, 3.11
1010
isolated_build = True
1111
skipsdist = True
1212

0 commit comments

Comments
 (0)