瀏覽代碼

travis: enable python3.8; disable dysfunctional 3.6/7-dev

Fabian Peter Hammerle 5 年之前
父節點
當前提交
455ebf82dd
共有 2 個文件被更改,包括 11 次插入11 次删除
  1. 1 2
      .travis.yml
  2. 10 9
      setup.py

+ 1 - 2
.travis.yml

@@ -3,9 +3,8 @@ language: python
 python:
 python:
 - 3.5
 - 3.5
 - 3.6
 - 3.6
-- 3.6-dev
 - 3.7
 - 3.7
-- 3.7-dev
+- 3.8
 
 
 # required for python >= 3.7
 # required for python >= 3.7
 dist: xenial
 dist: xenial

+ 10 - 9
setup.py

@@ -30,15 +30,16 @@ setuptools.setup(
         'vertex',
         'vertex',
     ],
     ],
     classifiers=[
     classifiers=[
-        'Development Status :: 3 - Alpha',
+        "Development Status :: 3 - Alpha",
-        'Intended Audience :: Healthcare Industry',
+        "Intended Audience :: Healthcare Industry",
-        'Intended Audience :: Science/Research',
+        "Intended Audience :: Science/Research",
-        'Programming Language :: Python :: 3.5',
+        "Programming Language :: Python :: 3.5",
-        'Programming Language :: Python :: 3.6',
+        "Programming Language :: Python :: 3.6",
-        'Programming Language :: Python :: 3.7',
+        "Programming Language :: Python :: 3.7",
-        'Topic :: Scientific/Engineering :: Information Analysis',
+        "Programming Language :: Python :: 3.8",
-        'Topic :: Scientific/Engineering :: Medical Science Apps.',
+        "Topic :: Scientific/Engineering :: Information Analysis",
-        'Topic :: Utilities',
+        "Topic :: Scientific/Engineering :: Medical Science Apps.",
+        "Topic :: Utilities",
     ],
     ],
     packages=setuptools.find_packages(),
     packages=setuptools.find_packages(),
     entry_points={
     entry_points={