@@ -103,7 +103,7 @@ jobs:
103
103
104
104
services :
105
105
mysql :
106
- image : mysql
106
+ image : mysql:8.0.33
107
107
env :
108
108
MYSQL_ALLOW_EMPTY_PASSWORD : yes
109
109
MYSQL_DATABASE : pandas
@@ -116,8 +116,9 @@ jobs:
116
116
- 3306:3306
117
117
118
118
postgres :
119
- image : postgres
119
+ image : postgres:13
120
120
env :
121
+ PGUSER : postgres
121
122
POSTGRES_USER : postgres
122
123
POSTGRES_PASSWORD : postgres
123
124
POSTGRES_DB : pandas
@@ -130,7 +131,7 @@ jobs:
130
131
- 5432:5432
131
132
132
133
moto :
133
- image : motoserver/moto:4.1.12
134
+ image : motoserver/moto:4.1.13
134
135
env :
135
136
AWS_ACCESS_KEY_ID : foobar_key
136
137
AWS_SECRET_ACCESS_KEY : foobar_secret
@@ -237,7 +238,7 @@ jobs:
237
238
run : |
238
239
/opt/python/cp311-cp311/bin/python -m venv ~/virtualenvs/pandas-dev
239
240
. ~/virtualenvs/pandas-dev/bin/activate
240
- python -m pip install -U pip wheel setuptools meson[ninja]==1.0.1 meson-python==0.13.1
241
+ python -m pip install --no-cache-dir - U pip wheel setuptools meson[ninja]==1.0.1 meson-python==0.13.1
241
242
python -m pip install --no-cache-dir versioneer[toml] cython numpy python-dateutil pytz pytest>=7.3.2 pytest-xdist>=2.2.0 pytest-asyncio>=0.17 hypothesis>=6.46.1
242
243
python -m pip install --no-cache-dir --no-build-isolation -e .
243
244
python -m pip list --no-cache-dir
@@ -275,7 +276,7 @@ jobs:
275
276
run : |
276
277
/opt/python/cp311-cp311/bin/python -m venv ~/virtualenvs/pandas-dev
277
278
. ~/virtualenvs/pandas-dev/bin/activate
278
- python -m pip install -U pip wheel setuptools meson-python==0.13.1 meson[ninja]==1.0.1
279
+ python -m pip install --no-cache-dir - U pip wheel setuptools meson-python==0.13.1 meson[ninja]==1.0.1
279
280
python -m pip install --no-cache-dir versioneer[toml] cython numpy python-dateutil pytz pytest>=7.3.2 pytest-xdist>=2.2.0 pytest-asyncio>=0.17 hypothesis>=6.46.1
280
281
python -m pip install --no-cache-dir --no-build-isolation -e .
281
282
python -m pip list --no-cache-dir
0 commit comments