Skip to content

Commit 4b19678

Browse files
committed
Drop py37 support, begin testing again py313
1 parent c36d6da commit 4b19678

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/test-suite.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,15 @@ jobs:
3636
fail-fast: false # allow tests to run on all platforms
3737
matrix:
3838
python-version:
39-
- "pypy-3.7"
4039
- "pypy-3.8"
4140
- "pypy-3.9"
4241
- "pypy-3.10"
43-
- "3.7"
4442
- "3.8"
4543
- "3.9"
4644
- "3.10"
4745
- "3.11"
4846
- "3.12"
47+
- "3.13"
4948
os:
5049
- ubuntu-latest
5150
- windows-latest

pyproject.toml

+5-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ maintainers = [
1515
]
1616

1717
# Dependency Information
18-
requires-python = ">=3.7"
18+
requires-python = ">=3.8"
1919
dependencies = [
2020
"typing_extensions",
2121
]
@@ -29,7 +29,6 @@ classifiers = [
2929
"License :: OSI Approved :: BSD License",
3030
"Operating System :: OS Independent",
3131
"Programming Language :: Python :: 3 :: Only",
32-
"Programming Language :: Python :: 3.7",
3332
"Programming Language :: Python :: 3.8",
3433
"Programming Language :: Python :: 3.9",
3534
"Programming Language :: Python :: 3.10",
@@ -44,6 +43,10 @@ classifiers = [
4443
GitHub = "https://github.com/nhairs/python-json-logger"
4544

4645
[project.optional-dependencies]
46+
orjson = [
47+
"orjson",
48+
]
49+
4750
dev = [
4851
## Optional but required for dev
4952
"orjson",

0 commit comments

Comments
 (0)