Skip to content

Commit 92394a7

Browse files
authored
Merge pull request #189 from helmholtzcloud/develop
Bump dependencies, update pytest config for pytest 9
2 parents 2fdcd46 + 546f245 commit 92394a7

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
runs-on: ubuntu-latest
1212

1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- name: Set up Python
16-
uses: actions/setup-python@v5
16+
uses: actions/setup-python@v6
1717
with:
18-
python-version: '3.13'
18+
python-version: '3.14'
1919
- name: Create packages
2020
run: |
2121
python -m pip install build

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
11+
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
1212

1313
steps:
1414
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
name = "pytest-httpx"
77
description = "Send responses to httpx."
88
readme = "README.md"
9-
requires-python = ">=3.9"
9+
requires-python = ">=3.10"
1010
license = {file = "LICENSE"}
1111
authors = [
1212
{ name = "Colin Bounouar", email = "colin.bounouar.dev@gmail.com" },
@@ -27,18 +27,18 @@ classifiers = [
2727
"Natural Language :: English",
2828
"Programming Language :: Python",
2929
"Programming Language :: Python :: 3",
30-
"Programming Language :: Python :: 3.9",
3130
"Programming Language :: Python :: 3.10",
3231
"Programming Language :: Python :: 3.11",
3332
"Programming Language :: Python :: 3.12",
3433
"Programming Language :: Python :: 3.13",
34+
"Programming Language :: Python :: 3.14",
3535
"Topic :: Internet :: WWW/HTTP",
3636
"Topic :: Software Development :: Build Tools",
3737
"Typing :: Typed",
3838
]
3939
dependencies = [
4040
"httpx==0.28.*",
41-
"pytest==8.*",
41+
"pytest==9.*",
4242
]
4343
dynamic = ["version"]
4444

@@ -53,7 +53,7 @@ testing = [
5353
# Used to check coverage
5454
"pytest-cov==6.*",
5555
# Used to run async tests
56-
"pytest-asyncio==0.24.*",
56+
"pytest-asyncio==1.*",
5757
]
5858

5959
[project.entry-points.pytest11]
@@ -62,6 +62,6 @@ pytest_httpx = "pytest_httpx"
6262
[tool.setuptools.dynamic]
6363
version = {attr = "pytest_httpx.version.__version__"}
6464

65-
[tool.pytest.ini_options]
65+
[tool.pytest]
6666
# Silence deprecation warnings about option "asyncio_default_fixture_loop_scope"
6767
asyncio_default_fixture_loop_scope = "function"

0 commit comments

Comments
 (0)