Skip to content

Commit 7869816

Browse files
author
Kevin D Smith
committed
Fix pandas incompatibilities in testing
1 parent 7454e5f commit 7869816

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tox.ini

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,12 +97,14 @@ commands = {[testenv:conda]commands}
9797
conda_deps =
9898
{[testenv]conda_deps}
9999
pandas==0.22*
100+
numpy<=1.20 # pandas is incompatible with newer versions
100101

101102
[testenv:py27-pip]
102103
commands = {[testenv:pip]commands}
103104
conda_deps =
104105
{[testenv]conda_deps}
105106
pandas==0.22*
107+
numpy<=1.20 # pandas is incompatible with newer versions
106108

107109
#
108110
# Python 3.5
@@ -112,12 +114,14 @@ commands = {[testenv:conda]commands}
112114
conda_deps =
113115
{[testenv]conda_deps}
114116
pandas==0.23*
117+
numpy<=1.20 # pandas is incompatible with newer versions
115118

116119
[testenv:py35-pip]
117120
commands = {[testenv:pip]commands}
118121
conda_deps =
119122
{[testenv]conda_deps}
120123
pandas==0.23*
124+
numpy<=1.20 # pandas is incompatible with newer versions
121125

122126
#
123127
# Python 3.6
@@ -127,12 +131,14 @@ commands = {[testenv:conda]commands}
127131
conda_deps =
128132
{[testenv]conda_deps}
129133
pandas==0.24*
134+
numpy<=1.20 # pandas is incompatible with newer versions
130135

131136
[testenv:py36-pip]
132137
commands = {[testenv:pip]commands}
133138
conda_deps =
134139
{[testenv]conda_deps}
135140
pandas==0.24*
141+
numpy<=1.20 # pandas is incompatible with newer versions
136142

137143
#
138144
# Python 3.7
@@ -142,12 +148,14 @@ commands = {[testenv:conda]commands}
142148
conda_deps =
143149
{[testenv]conda_deps}
144150
pandas==0.25*
151+
numpy<=1.20 # pandas is incompatible with newer versions
145152

146153
[testenv:py37-pip]
147154
commands = {[testenv:pip]commands}
148155
conda_deps =
149156
{[testenv]conda_deps}
150157
pandas==0.25*
158+
numpy<=1.20 # pandas is incompatible with newer versions
151159

152160
#
153161
# Python 3.8

0 commit comments

Comments
 (0)