Skip to content
Open
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
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ jobs:
github.event_name == 'schedule'
uses: ./.github/workflows/reusable-python-test.yml
with:
python-versions: '["3.8", "3.12"]'
python-versions: '["3.8", "3.14"]'
platforms: '["ubuntu-22.04", "ubuntu-latest", "macos-latest"]'
matrix-exclude: '[{"platform": "macos-latest", "python-version": "3.8"}, {"platform": "ubuntu-latest", "python-version": "3.8"}, {"platform": "ubuntu-22.04", "python-version": "3.12"}]'
matrix-exclude: '[{"platform": "macos-latest", "python-version": "3.8"}, {"platform": "ubuntu-latest", "python-version": "3.8"}, {"platform": "ubuntu-22.04", "python-version": "3.14"}]'
secrets:
PIPELINE_GITHUB_APP_ID: ${{ secrets.PIPELINE_GITHUB_APP_ID }}
PIPELINE_GITHUB_APP_PRIVATE_KEY: ${{ secrets.PIPELINE_GITHUB_APP_PRIVATE_KEY }}
Expand All @@ -56,7 +56,7 @@ jobs:
uses: ./.github/workflows/reusable-examples.yml
with:
examples-script: './check-examples.sh'
python-version: '3.12'
python-version: '3.14'

report:
runs-on: ubuntu-latest
Expand Down
8 changes: 6 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,10 @@ classifiers=
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Programming Language :: Python :: 3.14
project_urls =
Bug Tracker = https://github.com/DataDog/datadog-api-client-python/issues
Documentation = https://docs.datadoghq.com/api/
Expand All @@ -50,11 +54,11 @@ setup_requires =
apm =
ddtrace>=1.15.0
async =
aiosonic==0.24.0
aiosonic>=0.30.0
zstandard =
zstandard
tests =
aiosonic==0.24.0
aiosonic>=0.30.0
glom
jinja2
pytest<8.0.0
Expand Down
2 changes: 1 addition & 1 deletion src/datadog_api_client/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
# This product includes software developed at Datadog (https://www.datadoghq.com/).
# Copyright 2020-Present Datadog, Inc.

__version__ = "2.46.0"
__version__ = "2.46.1"
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py38, py39, py310, docs
envlist = py310, py311, py312, py313, py314, docs

[testenv]
extras = tests
Expand Down