Skip to content
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
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ name: Test and Lint
on:
pull_request:

jobs:
jobs:
test-and-lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
env:
SCOUT_LOGS_INGEST_KEY: test-ingest-key
steps:
Expand All @@ -33,4 +33,4 @@ jobs:

- name: Run tests with coverage
run: |
poetry run task test
poetry run task test
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog

## Pending
### Fixed
- Shared logger provider being closed prematurely (#32)
- Ensure `handling_log` set to false if emit fails

### Changed
- Drop Python 3.9 support, add Python 3.13 and 3.14 support (#33)

## [1.0.2] 2025-12-05
### Changed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repository = "https://github.com/scoutapp/scout_apm_python_logging"
documentation = "https://scoutapm.com/docs/features/log-management"

[tool.poetry.dependencies]
python = "^3.9"
python = "^3.10"
opentelemetry-api = "^1.26.0"
opentelemetry-sdk = "^1.26.0"
opentelemetry-exporter-otlp = "^1.26.0"
Expand Down
Loading