Skip to content

Commit a878f3f

Browse files
authored
Update docker lib + include 3.10 to win tests (#868)
1 parent fa239a2 commit a878f3f

File tree

6 files changed

+8
-198
lines changed

6 files changed

+8
-198
lines changed

.appveyor.yml

Lines changed: 0 additions & 40 deletions
This file was deleted.

.github/workflows/publish.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,17 @@ jobs:
7474

7575
strategy:
7676
matrix:
77-
# 3.10 is excluded because docker's dependency on pywin32==227
78-
python: ["3.7", "3.8", "3.9"]
77+
# 3.11 excluded due to problems with python-snappy
78+
python: ["3.7", "3.8", "3.9", "3.10"]
7979
include:
8080
- python: "3.7"
8181
aiokafka_whl: dist/aiokafka-*-cp37-cp37m-win_amd64.whl
8282
- python: "3.8"
8383
aiokafka_whl: dist/aiokafka-*-cp38-cp38-win_amd64.whl
8484
- python: "3.9"
8585
aiokafka_whl: dist/aiokafka-*-cp39-cp39-win_amd64.whl
86+
- python: "3.10"
87+
aiokafka_whl: dist/aiokafka-*-cp310-cp310-win_amd64.whl
8688

8789
steps:
8890
- uses: actions/checkout@v2

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ jobs:
7373

7474
strategy:
7575
matrix:
76-
# 3.10 is excluded because docker's dependency on pywin32==227
77-
python: ["3.7", "3.8", "3.9"]
76+
# 3.11 excluded due to problems with python-snappy
77+
python: ["3.7", "3.8", "3.9", "3.10"]
7878

7979
steps:
8080
- uses: actions/checkout@v2

.travis.yml_bak

Lines changed: 0 additions & 152 deletions
This file was deleted.

requirements-ci.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ isort[colors]==5.10.0
66
pytest==7.1.2
77
pytest-cov==3.0.0
88
pytest-asyncio==0.18.3
9-
docker==5.0.3
9+
docker==6.0.1
1010
chardet==4.0.0 # Until fixed requests is released
1111
lz4==3.1.3
1212
xxhash==2.0.2

requirements-win-test.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ isort[colors]==5.10.0
66
pytest==7.1.2
77
pytest-cov==3.0.0
88
pytest-asyncio==0.18.3
9-
docker==5.0.3
9+
docker==6.0.1
1010
chardet==4.0.0 # Until fixed requests is released
1111
lz4==3.1.3
1212
xxhash==2.0.2

0 commit comments

Comments
 (0)