Skip to content

Commit d056a8d

Browse files
harper-u3dJonathan Harper
authored andcommitted
Limit pytest <4.0.0
Some of our tests fail with the new pytest v4.0.x versions because of a change to how fixtures work. Since these versions are the latest release in PyPI now, unit tests will fail on a fresh install. This change limits the version range in setup.py to fix the issue until we can make a decision about upgrading.
1 parent aba41ea commit d056a8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ml-agents/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
'matplotlib',
3434
'numpy>=1.13.3,<=1.14.5',
3535
'jupyter',
36-
'pytest>=3.2.2',
36+
'pytest>=3.2.2,<4.0.0',
3737
'docopt',
3838
'pyyaml',
3939
'protobuf>=3.6,<3.7',

0 commit comments

Comments
 (0)