From 10e72aacb740f494daeab347c95c3ba9e2ff4036 Mon Sep 17 00:00:00 2001 From: Tres Seaver Date: Tue, 28 Aug 2018 22:01:20 -0400 Subject: [PATCH] Monitoring: test pandas under all supported Python versions (#5858) * Test pandas support under all Python versions. * Declare full support for Python 3.7. Closes #5293. --- monitoring/nox.py | 2 +- monitoring/setup.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/monitoring/nox.py b/monitoring/nox.py index e177ae9e33ca..cf4560ceea66 100644 --- a/monitoring/nox.py +++ b/monitoring/nox.py @@ -37,7 +37,7 @@ def unit(session, py): # Install all test dependencies, then install this package in-place. session.install('pytest', 'mock') - session.install('-e', '.') + session.install('-e', '.[pandas]') # Run py.test against the unit tests. session.run('py.test', '--quiet', os.path.join('tests', 'unit')) diff --git a/monitoring/setup.py b/monitoring/setup.py index b12c7d4a3ffb..8348d2af8146 100644 --- a/monitoring/setup.py +++ b/monitoring/setup.py @@ -76,6 +76,7 @@ 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Operating System :: OS Independent', 'Topic :: Internet', ],