From 600cd0b8ee666a6341406da206511a8cc594db0f Mon Sep 17 00:00:00 2001 From: rocky Date: Wed, 21 Aug 2019 08:55:35 -0400 Subject: [PATCH] CircleCi 3rd try --- .circleci/config.yml | 2 +- __pkginfo__.py | 64 ++++++++++++++++++++++---------------------- requirements-dev.txt | 2 ++ 3 files changed, 35 insertions(+), 33 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e385cf64..8d6403d7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -55,7 +55,7 @@ jobs: # This is based on your 1.0 configuration file or project settings - run: pip install --upgrade setuptools - run: pip install -e . - - run: pip install pytest==3.2.5 hypothesis==3.0.0 + - run: pip install -r requirements-dev.txt # Save dependency cache - save_cache: diff --git a/__pkginfo__.py b/__pkginfo__.py index 69929d1f..44a342f6 100644 --- a/__pkginfo__.py +++ b/__pkginfo__.py @@ -26,46 +26,46 @@ copyright = """ Copyright (C) 2015-2019 Rocky Bernstein . """ -classifiers = ['Development Status :: 5 - Production/Stable', - 'Intended Audience :: Developers', - 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', - 'Operating System :: OS Independent', - 'Programming Language :: Python', - 'Programming Language :: Python :: 2.4', - 'Programming Language :: Python :: 2.5', - 'Programming Language :: Python :: 2.6', - 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.0', - 'Programming Language :: Python :: 3.1', - 'Programming Language :: Python :: 3.2', - 'Programming Language :: Python :: 3.3', - 'Programming Language :: Python :: 3.4', - 'Programming Language :: Python :: 3.5', - 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8', - 'Topic :: Software Development :: Debuggers', - 'Topic :: Software Development :: Libraries :: Python Modules', +classifiers = ["Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", + "Operating System :: OS Independent", + "Programming Language :: Python", + "Programming Language :: Python :: 2.4", + "Programming Language :: Python :: 2.5", + "Programming Language :: Python :: 2.6", + "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3.0", + "Programming Language :: Python :: 3.1", + "Programming Language :: Python :: 3.2", + "Programming Language :: Python :: 3.3", + "Programming Language :: Python :: 3.4", + "Programming Language :: Python :: 3.5", + "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Topic :: Software Development :: Debuggers", + "Topic :: Software Development :: Libraries :: Python Modules", ] # The rest in alphabetic order author = "Rocky Bernstein, Hartmut Goebel, John Aycock, and others" author_email = "rb@dustyfeet.com" entry_points = { - 'console_scripts': [ - 'uncompyle6=uncompyle6.bin.uncompile:main_bin', - 'pydisassemble=uncompyle6.bin.pydisassemble:main', + "console_scripts": [ + "uncompyle6=uncompyle6.bin.uncompile:main_bin", + "pydisassemble=uncompyle6.bin.pydisassemble:main", ]} ftp_url = None -install_requires = ['spark-parser >= 1.8.9, < 1.9.0', - 'xdis >= 4.0.3, < 4.1.0'] +install_requires = ["spark-parser >= 1.8.9, < 1.9.0", + "xdis >= 4.0.3, < 4.1.0"] -license = 'GPL3' -mailing_list = 'python-debugger@googlegroups.com' -modname = 'uncompyle6' +license = "GPL3" +mailing_list = "python-debugger@googlegroups.com" +modname = "uncompyle6" py_modules = None -short_desc = 'Python cross-version byte-code decompiler' -web = 'https://github.com/rocky/python-uncompyle6/' +short_desc = "Python cross-version byte-code decompiler" +web = "https://github.com/rocky/python-uncompyle6/" # tracebacks in zip files are funky and not debuggable zip_safe = True @@ -82,5 +82,5 @@ def read(*rnames): return open(os.path.join(srcdir, *rnames)).read() # Get info from files; set: long_description and VERSION -long_description = ( read("README.rst") + '\n' ) -exec(read('uncompyle6/version.py')) +long_description = ( read("README.rst") + "\n" ) +exec(read("uncompyle6/version.py")) diff --git a/requirements-dev.txt b/requirements-dev.txt index b97df148..77c74ff3 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,2 +1,4 @@ flake8 hypothesis<=3.0.0 +six +pytest==3.2.5