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
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ on:

jobs:
unit-tests:
runs-on: ubuntu-22.04
runs-on: ubuntu-latest

strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion docs/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Requirements

Python WireMock is known to support Python 3.7 or above.
Python WireMock is known to support Python 3.9 or above.

## Pip

Expand Down
2 changes: 1 addition & 1 deletion docs/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ In this example we will use the [pytest](https://docs.pytest.org/) framework.

## Prerequisites

- Python 3.7 or above
- Python 3.9 or above
- Pip 20.0.0 or above (use `apt install python3-pip`, for example)
- Pytest 7.3.0 or above (use `pip install pytest`)
- Testcontainers 3.5.0 or above (use `pip install testcontainers`)
Expand Down
2 changes: 1 addition & 1 deletion examples/quickstart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ See the step-by-step guide [here](../../docs/quickstart.md)

## Prerequisites

- Python 3.7 or above
- Python 3.9 or above
- Pip 20.0.0 or above (use `apt install python3-pip`, for example)
- Pytest 7.3.0 or above (use `pip install pytest`)
- Testcontainers 3.5.0 or above (use `pip install testcontainers`)
Expand Down
Loading