Skip to content

Commit 2fee1d6

Browse files
committed
Update CI job with "oldest supported dependencies"
Alpine 3.17 has faded away, bump to Alpine 3.18.
1 parent a934d5e commit 2fee1d6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.builds/tests-minimal.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# TODO: It might make more sense to test with an older Ubuntu or Fedora version
44
# here, and consider that our "oldest suppported environment".
55

6-
image: alpine/3.17 # python 3.10
6+
image: alpine/3.18 # python 3.11
77
packages:
88
- docker
99
- docker-cli
@@ -28,6 +28,8 @@ tasks:
2828
sudo service docker start
2929
- setup: |
3030
cd vdirsyncer
31+
# Hack, no idea why it's needed
32+
sudo ln -s /usr/include/python3.11/cpython/longintrepr.h /usr/include/python3.11/longintrepr.h
3133
make -e install-dev
3234
- test: |
3335
cd vdirsyncer

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"requests >=2.20.0",
1919
# https://github.com/untitaker/python-atomicwrites/commit/4d12f23227b6a944ab1d99c507a69fdbc7c9ed6d # noqa
2020
"atomicwrites>=0.1.7",
21-
"aiohttp>=3.8.0,<4.0.0",
21+
"aiohttp>=3.8.2,<4.0.0",
2222
"aiostream>=0.4.3,<0.5.0",
2323
]
2424

0 commit comments

Comments
 (0)