From f8adbd73df59e494295787754637416e66c6af18 Mon Sep 17 00:00:00 2001 From: Tyler Goodlet Date: Sat, 16 Nov 2019 09:58:06 -0500 Subject: [PATCH] Add windows and py3.8 support to setup script --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index b6d60d1..190070e 100755 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ setup( maintainer='Tyler Goodlet', maintainer_email='jgbt@protonmail.com', url='https://github.com/goodboy/tractor', - platforms=['linux'], + platforms=['linux', 'windows'], packages=[ 'tractor', 'tractor.testing', @@ -53,7 +53,8 @@ setup( "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: 3 :: Only", - "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", "Intended Audience :: Science/Research", "Intended Audience :: Developers", "Topic :: System :: Distributed Computing",