]> git.phdru.name Git - ppu.git/blobdiff - setup.py
Test,CI: Run tests with Python 3.9
[ppu.git] / setup.py
index 5d31cb321c71f87fca8f1b561442cb04cbdb668e..64887ff422d235df68060f5daa61e6e1a85fd4a7 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ versionpath = join(abspath(dirname(__file__)), 'ppu', '__version__.py')
 ppu_version = {}
 
 if sys.version_info[:2] == (2, 7):
-    execfile(versionpath, ppu_version)
+    execfile(versionpath, ppu_version)  # noqa: F821 'execfile' Py3
 
 elif sys.version_info >= (3, 4):
     exec(open(versionpath, 'rU').read(), ppu_version)
@@ -51,6 +51,8 @@ setup(
         'Programming Language :: Python :: 3.5',
         'Programming Language :: Python :: 3.6',
         'Programming Language :: Python :: 3.7',
+        'Programming Language :: Python :: 3.8',
+        'Programming Language :: Python :: 3.9',
     ],
     packages=['ppu'],
     scripts=[