Skip to content

Commit 715f2af

Browse files
committed
Update testcontainers version
1 parent 735a8b1 commit 715f2af

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

.github/workflows/ci.yml

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,31 @@ jobs:
1616
- uses: actions/checkout@v3
1717
- uses: actions/setup-python@v3
1818
- uses: pre-commit/[email protected]
19+
build:
20+
21+
runs-on: ubuntu-20.04
22+
strategy:
23+
fail-fast: false
24+
matrix:
25+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
26+
27+
steps:
28+
- uses: actions/checkout@v4
29+
- name: Set up Python ${{ matrix.python-version }}
30+
uses: actions/setup-python@v5
31+
with:
32+
python-version: ${{ matrix.python-version }}
33+
- name: Install dependencies
34+
run: |
35+
python -m pip install --upgrade pip
36+
python -m pip install .
1937
test:
2038

2139
runs-on: ubuntu-20.04
2240
strategy:
2341
fail-fast: false
2442
matrix:
25-
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
43+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
2644

2745
steps:
2846
- uses: actions/checkout@v4

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies = [
2222
"urllib3>=1.22"
2323
]
2424
[project.optional-dependencies]
25-
test = ["pytest", "testcontainers>=3.7.0,<4"]
25+
test = ["pytest", "testcontainers>=4"]
2626

2727
[project.urls]
2828
Homepage = "https://github.com/ChannelFinderService/pyCFClient"

0 commit comments

Comments
 (0)