Skip to content

Commit 5a7f1ea

Browse files
authored
Merge pull request #119 from alexjrk/feature/add-support-for-newer-python-and-drop-for-older
🧹 Update Python version support: add newer, drop older
2 parents b9e2084 + 8a3c5b0 commit 5a7f1ea

File tree

6 files changed

+693
-615
lines changed

6 files changed

+693
-615
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ on:
88

99
jobs:
1010
unit-tests:
11-
runs-on: ubuntu-22.04
11+
runs-on: ubuntu-latest
1212

1313
strategy:
1414
matrix:
15-
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
15+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1616

1717
steps:
1818
- uses: actions/checkout@v3

docs/install.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Requirements
44

5-
Python WireMock is known to support Python 3.7 or above.
5+
Python WireMock is known to support Python 3.9 or above.
66

77
## Pip
88

docs/quickstart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ In this example we will use the [pytest](https://docs.pytest.org/) framework.
88

99
## Prerequisites
1010

11-
- Python 3.7 or above
11+
- Python 3.9 or above
1212
- Pip 20.0.0 or above (use `apt install python3-pip`, for example)
1313
- Pytest 7.3.0 or above (use `pip install pytest`)
1414
- Testcontainers 3.5.0 or above (use `pip install testcontainers`)

examples/quickstart/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ See the step-by-step guide [here](../../docs/quickstart.md)
88

99
## Prerequisites
1010

11-
- Python 3.7 or above
11+
- Python 3.9 or above
1212
- Pip 20.0.0 or above (use `apt install python3-pip`, for example)
1313
- Pytest 7.3.0 or above (use `pip install pytest`)
1414
- Testcontainers 3.5.0 or above (use `pip install testcontainers`)

0 commit comments

Comments
 (0)