Skip to content

Commit

Permalink
Remove useless warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
hartym committed Mar 15, 2019
1 parent bc7681b commit 3c8286e
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 42 deletions.
2 changes: 2 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
Changelog
=========

- :release:`0.7.1 <2019-03-15>`
- :bug:`0` Remove deserialization warning (means nothing important).
- :release:`0.7.0 <2019-03-15>`
- :feature:`0` Git: now less verbose.
- :feature:`0` Kubernetes: basic helm support.
Expand Down
1 change: 1 addition & 0 deletions medikit/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ def main(args=None):
mondrian.setup(excepthook=True)
logger = logging.getLogger()
logger.setLevel(logging.INFO)
logging.getLogger("pip._vendor.cachecontrol.controller").setLevel(logging.ERROR)

cli = MedikitCommand()

Expand Down
2 changes: 1 addition & 1 deletion medikit/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.7.0'
__version__ = "0.7.0"
89 changes: 48 additions & 41 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
# All changes will be overriden.
# Edit Projectfile and run “make update” (or “medikit update”) to regenerate.

from setuptools import setup, find_packages
from codecs import open
from os import path

from setuptools import find_packages, setup

here = path.abspath(path.dirname(__file__))

# Py3 compatibility hacks, borrowed from IPython.
Expand All @@ -20,70 +21,76 @@ def execfile(fname, globs, locs=None):

# Get the long description from the README file
try:
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
with open(path.join(here, "README.rst"), encoding="utf-8") as f:
long_description = f.read()
except:
long_description = ''
long_description = ""

# Get the classifiers from the classifiers file
tolines = lambda c: list(filter(None, map(lambda s: s.strip(), c.split('\n'))))
tolines = lambda c: list(filter(None, map(lambda s: s.strip(), c.split("\n"))))
try:
with open(path.join(here, 'classifiers.txt'), encoding='utf-8') as f:
with open(path.join(here, "classifiers.txt"), encoding="utf-8") as f:
classifiers = tolines(f.read())
except:
classifiers = []

version_ns = {}
try:
execfile(path.join(here, 'medikit/_version.py'), version_ns)
execfile(path.join(here, "medikit/_version.py"), version_ns)
except EnvironmentError:
version = 'dev'
version = "dev"
else:
version = version_ns.get('__version__', 'dev')
version = version_ns.get("__version__", "dev")

setup(
author='Romain Dorgueil',
author_email='romain@dorgueil.net',
description='Opinionated python 3.5+ project management.',
license='Apache License, Version 2.0',
name='medikit',
python_requires='>=3.5',
author="Romain Dorgueil",
author_email="romain@dorgueil.net",
description="Opinionated python 3.5+ project management.",
license="Apache License, Version 2.0",
name="medikit",
python_requires=">=3.5",
version=version,
long_description=long_description,
classifiers=classifiers,
packages=find_packages(exclude=['ez_setup', 'example', 'test']),
packages=find_packages(exclude=["ez_setup", "example", "test"]),
include_package_data=True,
install_requires=[
'git-semver (~= 0.2.3)', 'jinja2 (~= 2.9)', 'mondrian (~= 0.7)',
'packaging (~= 19.0)', 'pip-tools (~= 2.0.2)', 'stevedore (~= 1.28)',
'whistle (~= 1.0)', 'yapf (~= 0.20)'
"git-semver (~= 0.2.3)",
"jinja2 (~= 2.9)",
"mondrian (~= 0.7)",
"packaging (~= 19.0)",
"pip-tools (~= 2.0.2)",
"stevedore (~= 1.28)",
"whistle (~= 1.0)",
"yapf (~= 0.20)",
],
extras_require={
'dev': [
'coverage (~= 4.4)', 'pytest (~= 3.4)', 'pytest-cov (~= 2.5)',
'releases (>= 1.6, < 1.7)', 'sphinx (~= 1.7)',
'sphinx-sitemap (~= 1.0)'
"dev": [
"coverage (~= 4.4)",
"pytest (~= 3.4)",
"pytest-cov (~= 2.5)",
"releases (>= 1.6, < 1.7)",
"sphinx (~= 1.7)",
"sphinx-sitemap (~= 1.0)",
]
},
entry_points={
'console_scripts': ['medikit=medikit.__main__:main'],
'medikit.feature': [
'django = medikit.feature.django:DjangoFeature',
'docker = medikit.feature.docker:DockerFeature',
'git = medikit.feature.git:GitFeature',
'kube = medikit.feature.kube:KubeFeature',
'make = medikit.feature.make:MakeFeature',
'nodejs = medikit.feature.nodejs:NodeJSFeature',
'pylint = medikit.feature.pylint:PylintFeature',
'pytest = medikit.feature.pytest:PytestFeature',
'python = medikit.feature.python:PythonFeature',
'sphinx = medikit.feature.sphinx:SphinxFeature',
'webpack = medikit.feature.webpack:WebpackFeature',
'yapf = medikit.feature.yapf:YapfFeature'
]
"console_scripts": ["medikit=medikit.__main__:main"],
"medikit.feature": [
"django = medikit.feature.django:DjangoFeature",
"docker = medikit.feature.docker:DockerFeature",
"git = medikit.feature.git:GitFeature",
"kube = medikit.feature.kube:KubeFeature",
"make = medikit.feature.make:MakeFeature",
"nodejs = medikit.feature.nodejs:NodeJSFeature",
"pylint = medikit.feature.pylint:PylintFeature",
"pytest = medikit.feature.pytest:PytestFeature",
"python = medikit.feature.python:PythonFeature",
"sphinx = medikit.feature.sphinx:SphinxFeature",
"webpack = medikit.feature.webpack:WebpackFeature",
"yapf = medikit.feature.yapf:YapfFeature",
],
},
url='https://python-medikit.github.io/',
download_url=
'https://github.com/python-medikit/medikit/archive/{version}.tar.gz'.
format(version=version),
url="https://python-medikit.github.io/",
download_url="https://github.com/python-medikit/medikit/archive/{version}.tar.gz".format(version=version),
)

0 comments on commit 3c8286e

Please sign in to comment.