From 932eee9d0e8c5819778471612e12d9b12e1cb969 Mon Sep 17 00:00:00 2001 From: Christoph Reiter Date: Mon, 16 Jul 2018 19:21:23 +0200 Subject: [PATCH] appveyor: add Python 3.7 jobs --- .appveyor.yml | 2 ++ setup.py | 1 + 2 files changed, 3 insertions(+) diff --git a/.appveyor.yml b/.appveyor.yml index 70c4e642..280525f6 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -4,10 +4,12 @@ environment: - PYTHON: "C:\\Python34" - PYTHON: "C:\\Python35" - PYTHON: "C:\\Python36" + - PYTHON: "C:\\Python37" - PYTHON: "C:\\Python27-x64" - PYTHON: "C:\\Python34-x64" - PYTHON: "C:\\Python35-x64" - PYTHON: "C:\\Python36-x64" + - PYTHON: "C:\\Python37-x64" install: - "%PYTHON%\\python.exe -m pip install --upgrade setuptools" diff --git a/setup.py b/setup.py index 4757972c..e48d1a52 100755 --- a/setup.py +++ b/setup.py @@ -267,6 +267,7 @@ def run(self): 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',