Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add Python 3.11 to supported versions of Python #22

Merged
merged 3 commits into from
Jul 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changes/unreleased/🔒 Security-20230815-203557.yaml
Original file line number Diff line number Diff line change
@@ -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
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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:

Expand Down
2 changes: 1 addition & 1 deletion delinea/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""The Delinea DevOps Secret Vault Python SDK"""
"""The Delinea DevOps Secrets Vault Python SDK"""

__version__ = "1.0.4"
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading