diff --git a/dist/homebrew/Sailboat.rb b/dist/homebrew/Sailboat.rb index 7c6bdff..b8c8137 100644 --- a/dist/homebrew/Sailboat.rb +++ b/dist/homebrew/Sailboat.rb @@ -1,6 +1,6 @@ # Created with sailboat, the Python releaser -# v0.23.3 +# v0.23.5 class Sailboat < Formula include Language::Python::Virtualenv diff --git a/dist/pypi/sailboat-0.23.3.tar.gz b/dist/pypi/sailboat-0.23.3.tar.gz deleted file mode 100644 index 3c79ca6..0000000 Binary files a/dist/pypi/sailboat-0.23.3.tar.gz and /dev/null differ diff --git a/dist/pypi/sailboat-0.23.3-py3-none-any.whl b/dist/pypi/sailboat-0.23.5-py3-none-any.whl similarity index 82% rename from dist/pypi/sailboat-0.23.3-py3-none-any.whl rename to dist/pypi/sailboat-0.23.5-py3-none-any.whl index bf9cc76..37aa23f 100644 Binary files a/dist/pypi/sailboat-0.23.3-py3-none-any.whl and b/dist/pypi/sailboat-0.23.5-py3-none-any.whl differ diff --git a/dist/pypi/sailboat-0.23.5.tar.gz b/dist/pypi/sailboat-0.23.5.tar.gz new file mode 100644 index 0000000..1334b18 Binary files /dev/null and b/dist/pypi/sailboat-0.23.5.tar.gz differ diff --git a/sailboat.egg-info/PKG-INFO b/sailboat.egg-info/PKG-INFO index 1baf550..096651d 100644 --- a/sailboat.egg-info/PKG-INFO +++ b/sailboat.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: sailboat -Version: 0.23.3 +Version: 0.23.5 Summary: A quick and easy way to distribute your Python projects! Home-page: https://github.com/cole-wilson/sailboat Author: Cole Wilson diff --git a/sailboat.toml b/sailboat.toml index 99ac807..451f245 100644 --- a/sailboat.toml +++ b/sailboat.toml @@ -13,9 +13,9 @@ description = "" url = "https://github.com/cole-wilson/sailboat" keywords = "" license = "MIT" -latest_build = "0.23.3" +latest_build = "0.23.5" author = "Cole Wilson" -latest_release = "0.23.2" +latest_release = "0.23.3" release-notes = "a" diff --git a/sailboat/__pycache__/builders.cpython-38.pyc b/sailboat/__pycache__/builders.cpython-38.pyc index 0091495..cc1082b 100644 Binary files a/sailboat/__pycache__/builders.cpython-38.pyc and b/sailboat/__pycache__/builders.cpython-38.pyc differ diff --git a/sailboat/builders.py b/sailboat/builders.py index 3af79c6..d0a9bc9 100644 --- a/sailboat/builders.py +++ b/sailboat/builders.py @@ -281,7 +281,7 @@ def run(self,**kwargs): except: print('removing app.spec...') try: - os.remove("app.spec") + os.remove("app.spec") except: pass # MAC APP BUNDLE============== @@ -307,7 +307,7 @@ def run(self,**kwargs): )) infoPlist.close() - os.rename('./../../pyinstaller/'+self.data['name'],'MacOS'+self.data['name']) + os.rename('./../../pyinstaller/'+self.data['name'],'MacOS/'+self.data['name']) os.chdir('./../../..') os.rename('./dist/'+self.data['name'],'./dist/pyinstaller/'+self.data['name']+".app") diff --git a/setup.py b/setup.py index f0c9f60..a698938 100755 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ options = { "name":"sailboat", - "version":"0.23.3", + "version":"0.23.5", "scripts":[], "entry_points":{'console_scripts': ['sail=sailboat.__main__:main', 'sailboat=sailboat.__main__:main'], 'sailboat_plugins': ['quickstart=sailboat.core:QuickStart', 'pypi=sailboat.builders:PyPi', 'homebrew=sailboat.builders:Homebrew', 'pyinstaller=sailboat.builders:PyInstaller', 'dev=sailboat.core:Develop', 'release=sailboat.core:Release', 'build=sailboat.build:Build', 'wizard=sailboat.core:Wizard', 'remove=sailboat.core:Remove', 'add=sailboat.core:Add', 'plugins=sailboat.core:ManagePlugins', 'git=sailboat.core:Git', 'tasks=sailboat.other:Tasks', 'workflow=sailboat.core:Actions', 'github=sailboat.core:Git', 'github_release=sailboat.core:GithubRelease', 'build_docs_readme=sailboat.other:BuildDocs']}, "author":"Cole Wilson",