From 23f89e7fd670a45b91ebcd7396a0a717434633a8 Mon Sep 17 00:00:00 2001 From: Miroslav Jirik Date: Fri, 21 Oct 2016 11:47:04 +0200 Subject: [PATCH 01/16] add setup --- setup.py | 83 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 83 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..2babdd6 --- /dev/null +++ b/setup.py @@ -0,0 +1,83 @@ +# Fallowing command is used to upload to pipy +# python setup.py register sdist upload +from setuptools import setup, find_packages +# Always prefer setuptools over distutils +from os import path + +here = path.abspath(path.dirname(__file__)) +setup( + name='vtkviewer', + description='VTK data viewer', + # Versions should comply with PEP440. For a discussion on single-sourcing + # the version across setup.py and the project code, see + # http://packaging.python.org/en/latest/tutorial.html#version + version='0.0.1', + url='https://github.com/mjirik/default_project', + author='Hal Canary', + author_email='halcanary@gmail.com', + license='Apache License, Version 2.0', + + # See https://pypi.python.org/pypi?%3Aaction=list_classifiers + classifiers=[ + # How mature is this project? Common values are + # 3 - Alpha + # 4 - Beta + # 5 - Production/Stable + 'Development Status :: 3 - Alpha', + + # Indicate who your project is intended for + 'Intended Audience :: Developers', + 'Topic :: Scientific/Engineering :: Bio-Informatics', + + # Pick your license as you wish (should match "license" above) + 'License :: OSI Approved :: BSD License', + + # Specify the Python versions you support here. In particular, ensure + # that you indicate whether you support Python 2, Python 3 or both. + # 'Programming Language :: Python :: 2', + # 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + # 'Programming Language :: Python :: 3', + # 'Programming Language :: Python :: 3.2', + # 'Programming Language :: Python :: 3.3', + # 'Programming Language :: Python :: 3.4', + ], + + # What does your project relate to? + keywords='viewer vtk', + + # You can just specify the packages manually here if your project is + # simple. Or you can use find_packages(). + packages=find_packages(exclude=['dist', 'docs', 'tests*']), + + # List run-time dependencies here. These will be installed by pip when + # your project is installed. For an analysis of "install_requires" vs pip's + # requirements files see: + # https://packaging.python.org/en/latest/technical.html#install-requires-vs-requirements-files + install_requires=['vtk'], + # 'SimpleITK'], # Removed becaouse of errors when pip is installing + dependency_links=[], + + # If there are data files included in your packages that need to be + # installed, specify them here. If using Python 2.6 or less, then these + # have to be included in MANIFEST.in as well. + # package_data={ + # 'sample': ['package_data.dat'], + # }, + + # Although 'package_data' is the preferred approach, in some case you may + # need to place data files outside of your packages. + # see + # http://docs.python.org/3.4/distutils/setupscript.html#installing-additional-files # noqa + # In this case, 'data_file' will be installed into '/my_data' + # data_files=[('my_data', ['data/data_file'])], + + # To provide executable scripts, use entry points in preference to the + # "scripts" keyword. Entry points provide cross-platform support and allow + # pip to create the appropriate form of executable for the target platform. + # entry_points={ + # 'console_scripts': [ + # 'sample=sample:main', + # ], + # }, +) From bf0950d5e3fbcccc4b3750db2deaee22deb695ea Mon Sep 17 00:00:00 2001 From: Miroslav Jirik Date: Fri, 21 Oct 2016 12:14:25 +0200 Subject: [PATCH 02/16] py_modules used --- setup.py | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/setup.py b/setup.py index 2babdd6..24f8a6f 100644 --- a/setup.py +++ b/setup.py @@ -48,14 +48,8 @@ # You can just specify the packages manually here if your project is # simple. Or you can use find_packages(). - packages=find_packages(exclude=['dist', 'docs', 'tests*']), - - # List run-time dependencies here. These will be installed by pip when - # your project is installed. For an analysis of "install_requires" vs pip's - # requirements files see: - # https://packaging.python.org/en/latest/technical.html#install-requires-vs-requirements-files - install_requires=['vtk'], - # 'SimpleITK'], # Removed becaouse of errors when pip is installing + # packages=find_packages(exclude=['dist', 'docs', 'tests*']), + py_modules=['vtkviewer'], dependency_links=[], # If there are data files included in your packages that need to be From 053e706c746116ca908bc7935e5729e386d3c13d Mon Sep 17 00:00:00 2001 From: Miroslav Jirik Date: Fri, 21 Oct 2016 12:18:01 +0200 Subject: [PATCH 03/16] anaconda distribution --- bld.bat | 2 ++ build.sh | 3 +++ meta.yml | 68 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ setup.cfg | 10 ++++++++ 4 files changed, 83 insertions(+) create mode 100644 bld.bat create mode 100644 build.sh create mode 100644 meta.yml create mode 100644 setup.cfg diff --git a/bld.bat b/bld.bat new file mode 100644 index 0000000..6021130 --- /dev/null +++ b/bld.bat @@ -0,0 +1,2 @@ +"%PYTHON%" setup.py install +if errorlevel 1 exit 1 \ No newline at end of file diff --git a/build.sh b/build.sh new file mode 100644 index 0000000..8e25a14 --- /dev/null +++ b/build.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +$PYTHON setup.py install diff --git a/meta.yml b/meta.yml new file mode 100644 index 0000000..2f70185 --- /dev/null +++ b/meta.yml @@ -0,0 +1,68 @@ +package: + name: vtkviewer + version: "0.0.1" + +source: +# this is used for build from git hub + git_rev: 0.0.1 + git_url: https://github.com/mjirik/vtkviewer.git + +# this is used for pypi + # fn: io3d-1.0.30.tar.gz + # url: https://pypi.python.org/packages/source/i/io3d/io3d-1.0.30.tar.gz + # md5: a3ce512c4c97ac2410e6dcc96a801bd8 +# patches: + # List any patch files here + # - fix.patch + +# build: + # noarch_python: True + # preserve_egg_dir: True + # entry_points: + # Put any entry points (scripts to be generated automatically) here. The + # syntax is module:function. For example + # + # - io3d = io3d:main + # + # Would create an entry point called io3d that calls io3d.main() + + + # If this is a new build for the same version, increment the build + # number. If you do not include this key, it defaults to 0. + # number: 1 + +requirements: + build: + - python + - setuptools + + run: + - python + - conda-build + - anaconda-client + +test: + # Python imports + imports: + - vtkviewer + + # commands: + # You can put test commands to be run here. Use this to test that the + # entry points work. + + + # You can also put a file called run_test.py in the recipe that will be run + # at test time. + + # requires: + # Put any additional test requirements here. For example + # - nose + +about: + home: https://github.com/mjirik/vtkviewer + license: Apache License, Version 2.0 + summary: 'VTK data viewer' + +# See +# http://docs.continuum.io/conda/build.html for +# more information about meta.yaml diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..d333b39 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,10 @@ + +[bumpversion] +current_version = 0.0.1 +files = setup.py meta.yaml +commit = True +tag = True +tag_name = {new_version} + +[nosetests] +attr = !interactive,!slow,!LAR From 9e3dd9eb7b5935beae607d9491fdff0781ba5f00 Mon Sep 17 00:00:00 2001 From: Miroslav Jirik Date: Fri, 21 Oct 2016 12:20:31 +0200 Subject: [PATCH 04/16] rename yml to yaml --- meta.yml => meta.yaml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename meta.yml => meta.yaml (100%) diff --git a/meta.yml b/meta.yaml similarity index 100% rename from meta.yml rename to meta.yaml From 4cc545ad1c5fe144a88d22f10686b65b06757c4b Mon Sep 17 00:00:00 2001 From: Miroslav Jirik Date: Fri, 21 Oct 2016 12:20:40 +0200 Subject: [PATCH 05/16] =?UTF-8?q?Bump=20version:=200.0.1=20=E2=86=92=200.0?= =?UTF-8?q?.2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- meta.yaml | 4 ++-- setup.cfg | 4 ++-- setup.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/meta.yaml b/meta.yaml index 2f70185..21f828c 100644 --- a/meta.yaml +++ b/meta.yaml @@ -1,10 +1,10 @@ package: name: vtkviewer - version: "0.0.1" + version: "0.0.2" source: # this is used for build from git hub - git_rev: 0.0.1 + git_rev: 0.0.2 git_url: https://github.com/mjirik/vtkviewer.git # this is used for pypi diff --git a/setup.cfg b/setup.cfg index d333b39..48e2eea 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,5 @@ - [bumpversion] -current_version = 0.0.1 +current_version = 0.0.2 files = setup.py meta.yaml commit = True tag = True @@ -8,3 +7,4 @@ tag_name = {new_version} [nosetests] attr = !interactive,!slow,!LAR + diff --git a/setup.py b/setup.py index 24f8a6f..05d17c9 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # http://packaging.python.org/en/latest/tutorial.html#version - version='0.0.1', + version='0.0.2', url='https://github.com/mjirik/default_project', author='Hal Canary', author_email='halcanary@gmail.com', From 9e4281e4d64c489d258b3de5fd11b4b6568476f7 Mon Sep 17 00:00:00 2001 From: Miroslav Jirik Date: Fri, 21 Oct 2016 12:28:30 +0200 Subject: [PATCH 06/16] =?UTF-8?q?Bump=20version:=200.0.2=20=E2=86=92=200.0?= =?UTF-8?q?.3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- meta.yaml | 4 ++-- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/meta.yaml b/meta.yaml index 21f828c..67e53ba 100644 --- a/meta.yaml +++ b/meta.yaml @@ -1,10 +1,10 @@ package: name: vtkviewer - version: "0.0.2" + version: "0.0.3" source: # this is used for build from git hub - git_rev: 0.0.2 + git_rev: 0.0.3 git_url: https://github.com/mjirik/vtkviewer.git # this is used for pypi diff --git a/setup.cfg b/setup.cfg index 48e2eea..9dcfb8a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.2 +current_version = 0.0.3 files = setup.py meta.yaml commit = True tag = True diff --git a/setup.py b/setup.py index 05d17c9..0898f8f 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # http://packaging.python.org/en/latest/tutorial.html#version - version='0.0.2', + version='0.0.3', url='https://github.com/mjirik/default_project', author='Hal Canary', author_email='halcanary@gmail.com', From 93029dc0b545896b143fba179584af344988b296 Mon Sep 17 00:00:00 2001 From: Miroslav Jirik Date: Fri, 21 Oct 2016 12:29:28 +0200 Subject: [PATCH 07/16] =?UTF-8?q?Bump=20version:=200.0.3=20=E2=86=92=200.0?= =?UTF-8?q?.4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- meta.yaml | 4 ++-- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/meta.yaml b/meta.yaml index 67e53ba..93ff05f 100644 --- a/meta.yaml +++ b/meta.yaml @@ -1,10 +1,10 @@ package: name: vtkviewer - version: "0.0.3" + version: "0.0.4" source: # this is used for build from git hub - git_rev: 0.0.3 + git_rev: 0.0.4 git_url: https://github.com/mjirik/vtkviewer.git # this is used for pypi diff --git a/setup.cfg b/setup.cfg index 9dcfb8a..3351ec9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.3 +current_version = 0.0.4 files = setup.py meta.yaml commit = True tag = True diff --git a/setup.py b/setup.py index 0898f8f..70b41f7 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # http://packaging.python.org/en/latest/tutorial.html#version - version='0.0.3', + version='0.0.4', url='https://github.com/mjirik/default_project', author='Hal Canary', author_email='halcanary@gmail.com', From 0399cf222f0199944c57c0226269ed652ce0463e Mon Sep 17 00:00:00 2001 From: Miroslav Jirik Date: Fri, 21 Oct 2016 12:30:29 +0200 Subject: [PATCH 08/16] vtk package required --- meta.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/meta.yaml b/meta.yaml index 93ff05f..8847468 100644 --- a/meta.yaml +++ b/meta.yaml @@ -35,6 +35,7 @@ requirements: build: - python - setuptools + - vtk run: - python From cad7f04cf3684c1bbe0dab0d2b578089cbe5a2d5 Mon Sep 17 00:00:00 2001 From: Miroslav Jirik Date: Fri, 21 Oct 2016 12:30:40 +0200 Subject: [PATCH 09/16] =?UTF-8?q?Bump=20version:=200.0.4=20=E2=86=92=200.0?= =?UTF-8?q?.5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- meta.yaml | 4 ++-- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/meta.yaml b/meta.yaml index 8847468..c3dad0d 100644 --- a/meta.yaml +++ b/meta.yaml @@ -1,10 +1,10 @@ package: name: vtkviewer - version: "0.0.4" + version: "0.0.5" source: # this is used for build from git hub - git_rev: 0.0.4 + git_rev: 0.0.5 git_url: https://github.com/mjirik/vtkviewer.git # this is used for pypi diff --git a/setup.cfg b/setup.cfg index 3351ec9..5f64dcb 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.4 +current_version = 0.0.5 files = setup.py meta.yaml commit = True tag = True diff --git a/setup.py b/setup.py index 70b41f7..3ac88b7 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # http://packaging.python.org/en/latest/tutorial.html#version - version='0.0.4', + version='0.0.5', url='https://github.com/mjirik/default_project', author='Hal Canary', author_email='halcanary@gmail.com', From 8b19b5bd606ee1ec7e34d0c12cfd776d6fb396a8 Mon Sep 17 00:00:00 2001 From: Miroslav Jirik Date: Fri, 21 Oct 2016 12:31:42 +0200 Subject: [PATCH 10/16] vtk for run --- meta.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/meta.yaml b/meta.yaml index c3dad0d..67780aa 100644 --- a/meta.yaml +++ b/meta.yaml @@ -41,6 +41,7 @@ requirements: - python - conda-build - anaconda-client + - vtk test: # Python imports From 69b9d12e1f001f630fdc78f186343bfec61bc6e2 Mon Sep 17 00:00:00 2001 From: Miroslav Jirik Date: Fri, 21 Oct 2016 12:31:50 +0200 Subject: [PATCH 11/16] =?UTF-8?q?Bump=20version:=200.0.5=20=E2=86=92=200.0?= =?UTF-8?q?.6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- meta.yaml | 4 ++-- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/meta.yaml b/meta.yaml index 67780aa..22b1243 100644 --- a/meta.yaml +++ b/meta.yaml @@ -1,10 +1,10 @@ package: name: vtkviewer - version: "0.0.5" + version: "0.0.6" source: # this is used for build from git hub - git_rev: 0.0.5 + git_rev: 0.0.6 git_url: https://github.com/mjirik/vtkviewer.git # this is used for pypi diff --git a/setup.cfg b/setup.cfg index 5f64dcb..e5f6d08 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.5 +current_version = 0.0.6 files = setup.py meta.yaml commit = True tag = True diff --git a/setup.py b/setup.py index 3ac88b7..d198a66 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # http://packaging.python.org/en/latest/tutorial.html#version - version='0.0.5', + version='0.0.6', url='https://github.com/mjirik/default_project', author='Hal Canary', author_email='halcanary@gmail.com', From 01428ed5d347bcb9c496bdfd7944b5e705d7337a Mon Sep 17 00:00:00 2001 From: Miroslav Jirik Date: Thu, 8 Dec 2016 10:39:56 +0100 Subject: [PATCH 12/16] removed conda packages from requirements --- meta.yaml | 2 -- 1 file changed, 2 deletions(-) diff --git a/meta.yaml b/meta.yaml index 22b1243..9c714c4 100644 --- a/meta.yaml +++ b/meta.yaml @@ -39,8 +39,6 @@ requirements: run: - python - - conda-build - - anaconda-client - vtk test: From 5343ac823578f43daa059f7c6ba79a9c2beeac0f Mon Sep 17 00:00:00 2001 From: Miroslav Jirik Date: Thu, 8 Dec 2016 10:40:14 +0100 Subject: [PATCH 13/16] =?UTF-8?q?Bump=20version:=200.0.6=20=E2=86=92=200.0?= =?UTF-8?q?.7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- meta.yaml | 4 ++-- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/meta.yaml b/meta.yaml index 9c714c4..5953f30 100644 --- a/meta.yaml +++ b/meta.yaml @@ -1,10 +1,10 @@ package: name: vtkviewer - version: "0.0.6" + version: "0.0.7" source: # this is used for build from git hub - git_rev: 0.0.6 + git_rev: 0.0.7 git_url: https://github.com/mjirik/vtkviewer.git # this is used for pypi diff --git a/setup.cfg b/setup.cfg index e5f6d08..7d1e386 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.6 +current_version = 0.0.7 files = setup.py meta.yaml commit = True tag = True diff --git a/setup.py b/setup.py index d198a66..45bc939 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # http://packaging.python.org/en/latest/tutorial.html#version - version='0.0.6', + version='0.0.7', url='https://github.com/mjirik/default_project', author='Hal Canary', author_email='halcanary@gmail.com', From 01452f7b0bff4f289304a94ff43033cc5bef2857 Mon Sep 17 00:00:00 2001 From: Miroslav Jirik Date: Sat, 2 Dec 2017 22:03:16 +0100 Subject: [PATCH 14/16] =?UTF-8?q?Bump=20version:=200.0.7=20=E2=86=92=200.0?= =?UTF-8?q?.8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- meta.yaml | 4 ++-- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/meta.yaml b/meta.yaml index 5953f30..75ace3c 100644 --- a/meta.yaml +++ b/meta.yaml @@ -1,10 +1,10 @@ package: name: vtkviewer - version: "0.0.7" + version: "0.0.8" source: # this is used for build from git hub - git_rev: 0.0.7 + git_rev: 0.0.8 git_url: https://github.com/mjirik/vtkviewer.git # this is used for pypi diff --git a/setup.cfg b/setup.cfg index 7d1e386..89ea0ee 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.7 +current_version = 0.0.8 files = setup.py meta.yaml commit = True tag = True diff --git a/setup.py b/setup.py index 45bc939..614de09 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # http://packaging.python.org/en/latest/tutorial.html#version - version='0.0.7', + version='0.0.8', url='https://github.com/mjirik/default_project', author='Hal Canary', author_email='halcanary@gmail.com', From 2bab6e891cd35c5b93a33ad9f57ba4ede794b23e Mon Sep 17 00:00:00 2001 From: Miroslav Jirik Date: Sat, 2 Dec 2017 22:13:08 +0100 Subject: [PATCH 15/16] print fixed according to python 3 --- vtkviewer.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/vtkviewer.py b/vtkviewer.py index cf274cd..43bbc47 100755 --- a/vtkviewer.py +++ b/vtkviewer.py @@ -105,7 +105,7 @@ def __init__(self): if vtkStereoType is not None: self.renWin.SetStereoType (vtkStereoType) else: - print '?%s?' % stereoType + print('?%s?' % stereoType) def Start(self): self.renWin.Render() @@ -252,8 +252,8 @@ def AddFile(self, file_name, colorMap=None): polyData = VTKViewer.readDataSet( file_name, vtk.vtkXMLRectilinearGridReader) else: - print file_name, ": BAD FILE NAME. Should end", - print "in VTK, VTP, PLY, OBJ, STL, VTU, or PDB." + print(file_name, ": BAD FILE NAME. Should end") + print("in VTK, VTP, PLY, OBJ, STL, VTU, or PDB.") raise Exception() self.AddPolyData(polyData, colorMap) return @@ -381,7 +381,7 @@ def GetVTKStereoType(stereoType): if __name__ == '__main__': if len(sys.argv) == 1: - print useage + print(useage) exit(1) vtkviewer = VTKViewer() @@ -393,11 +393,11 @@ def GetVTKStereoType(stereoType): for arg in sys.argv[1:]: fileNames = glob.glob(arg) if len(fileNames) == 0: - print "what:", arg + print("what:", arg) else: for fileName in fileNames: if os.path.isfile(fileName): vtkviewer.AddFile(fileName,colormap) else: - print "what:", fileName + print("what:", fileName) vtkviewer.Start() From 43c852c443aaba8acc231ce6a4cdc576aa67cbe8 Mon Sep 17 00:00:00 2001 From: Miroslav Jirik Date: Sat, 2 Dec 2017 22:13:33 +0100 Subject: [PATCH 16/16] =?UTF-8?q?Bump=20version:=200.0.8=20=E2=86=92=200.0?= =?UTF-8?q?.9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- meta.yaml | 4 ++-- setup.cfg | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/meta.yaml b/meta.yaml index 75ace3c..ef6bbb8 100644 --- a/meta.yaml +++ b/meta.yaml @@ -1,10 +1,10 @@ package: name: vtkviewer - version: "0.0.8" + version: "0.0.9" source: # this is used for build from git hub - git_rev: 0.0.8 + git_rev: 0.0.9 git_url: https://github.com/mjirik/vtkviewer.git # this is used for pypi diff --git a/setup.cfg b/setup.cfg index 89ea0ee..11beefd 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.0.8 +current_version = 0.0.9 files = setup.py meta.yaml commit = True tag = True diff --git a/setup.py b/setup.py index 614de09..7a157bb 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ # Versions should comply with PEP440. For a discussion on single-sourcing # the version across setup.py and the project code, see # http://packaging.python.org/en/latest/tutorial.html#version - version='0.0.8', + version='0.0.9', url='https://github.com/mjirik/default_project', author='Hal Canary', author_email='halcanary@gmail.com',