diff --git a/UploadPyPi.bat b/UploadPyPi.bat index 45937cb2bb..9168b463e3 100755 --- a/UploadPyPi.bat +++ b/UploadPyPi.bat @@ -1,15 +1,11 @@ rem Register and upload source -rem python setup.py register -r pypi python setup.py sdist upload -r pypi +python setup.py bdist_wheel upload -r pypi -rem Python 3.6 -"C:\Program Files\Anaconda3\python.exe" setup.py bdist_wheel upload -r pypi - -activate python35 +activate python3.5 python setup.py bdist_wheel upload -r pypi -deactivate python35 -rem Python 2 +activate python3.6 python setup.py bdist_wheel upload -r pypi pause \ No newline at end of file diff --git a/pyansys/__init__.py b/pyansys/__init__.py index 304a938c4e..ff2a56b85b 100755 --- a/pyansys/__init__.py +++ b/pyansys/__init__.py @@ -1,4 +1,4 @@ -__version__ = u'0.16' +__version__ = u'0.16.1' #from pyansys import Reader #from pyansys.Reader import ResultReader diff --git a/setup.py b/setup.py index fbca7917f0..edb9986ee1 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ def compilerName(): packages = ['pyansys', 'pyansys.examples'], # Version - version='0.16', + version='0.16.1', description='Pythonic interface to ANSYS binary files', long_description=open('README.rst').read(),