From 7bdbbc78a3085ae6caefcc92ac8894cc6720b55b Mon Sep 17 00:00:00 2001 From: rdb Date: Fri, 28 Dec 2018 15:35:43 +0100 Subject: [PATCH] tests: fix syntax error in setup.py, use default platforms --- tests/setup.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/tests/setup.py b/tests/setup.py index a8ce20715e..b5967f3b14 100644 --- a/tests/setup.py +++ b/tests/setup.py @@ -3,7 +3,7 @@ import pytest setup( name="panda3d-tester", - options = { + options={ 'build_apps': { 'gui_apps': { 'tester': 'main.py', @@ -12,13 +12,6 @@ setup( 'pandagl', 'p3openal_audio', ], - }, - 'platforms': [ - 'manylinux1_x86_64', - 'macosx_10_6_x86_64', - 'win32', - 'win_amd64', - ], } } )