From 0c4b3ce86389daced7a3d160a5d8786a1933a140 Mon Sep 17 00:00:00 2001 From: Nicolas Guarin-Zapata Date: Wed, 1 Jul 2020 21:47:03 -0500 Subject: [PATCH] Add vis for 4th order tensors --- docs/conf.py | 3 ++- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 4259fdc..86a09c1 100755 --- a/docs/conf.py +++ b/docs/conf.py @@ -32,7 +32,8 @@ # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom ones. -extensions = ['sphinx.ext.autodoc', 'sphinx.ext.viewcode'] +extensions = ['sphinx.ext.autodoc', 'sphinx.ext.viewcode', + 'sphinx.ext.imgconverter'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] diff --git a/setup.cfg b/setup.cfg index ffc9523..ad573b4 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.2.0 +current_version = 0.2.1 commit = True tag = True diff --git a/setup.py b/setup.py index f0be6e3..abae133 100644 --- a/setup.py +++ b/setup.py @@ -44,6 +44,6 @@ test_suite='tests', tests_require=test_requirements, url='https://github.com/nicoguaro/continuum_mechanics', - version='0.2.0', + version='0.2.1', zip_safe=False, )