Skip to content

Commit 4a2eec0

Browse files
authored
Pin pandas installed by tests to 1.1.5
1.1.5 is the latest version that supports both Python 3.6 and 3.9.
1 parent 3a59893 commit 4a2eec0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/integration/test_package.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def _get_random_package_name():
5252
reason='Extended packaging tests only run on py3.')
5353
@pytest.mark.parametrize(
5454
'package,contents', [
55-
('pandas==1.0.3', [
55+
('pandas==1.1.5', [
5656
'pandas/_libs/__init__.py',
5757
'pandas/io/sas/_sas.cpython-*-x86_64-linux-gnu.so']),
5858
('SQLAlchemy==1.3.20', [
@@ -142,12 +142,12 @@ def test_can_package_sqlalchemy(self, runner, app_skeleton,
142142
)
143143

144144
@pytest.mark.skipif(sys.version_info[0] == 2,
145-
reason='pandas==1.0.3 is only suported on py3.')
145+
reason='pandas==1.1.5 is only suported on py3.')
146146
def test_can_package_pandas(self, runner, app_skeleton, no_local_config):
147147
assert_can_package_dependency(
148148
runner,
149149
app_skeleton,
150-
'pandas==1.0.3',
150+
'pandas==1.1.5',
151151
contents=[
152152
'pandas/_libs/__init__.py',
153153
],

0 commit comments

Comments
 (0)