Skip to content

Commit

Permalink
Emergency patch for error in sys.argv 🚨
Browse files Browse the repository at this point in the history
  • Loading branch information
cole-wilson committed Feb 8, 2021
1 parent a294e5b commit ebb1fbb
Show file tree
Hide file tree
Showing 10 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dist/homebrew/Sailboat.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Created with sailboat, the Python releaser

# v0.25.0+7490438.1
# v0.25.1

class Sailboat < Formula
include Language::Python::Virtualenv
Expand Down
Binary file removed dist/pypi/sailboat-0.25.0.tar.gz
Binary file not shown.
Binary file not shown.
Binary file added dist/pypi/sailboat-0.25.1.tar.gz
Binary file not shown.
6 changes: 3 additions & 3 deletions sailboat.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ description = ""
url = "https://github.com/cole-wilson/sailboat"
keywords = ""
license = "MIT"
latest_build = "0.25.0+7490438.1"
latest_build = "0.25.1"
author = "Cole Wilson"
latest_release = "0.24.13-rc.1"
release-notes = "Testing fancy outputThis pre-release adds several features, outlined below:\n - Adds fancy progress/status bars to build process.\n\n - Added multiline release description.\n\n - Moved `refresh_plugin()` and `Plugin` class as base __init__.py file.\n\n - Added `get_plugin()` function, making core plugins more concise.\n"
latest_release = "0.25.0"
release-notes = "Added fancy progress bars/__init__.py stuff"


# Resource Setup:
Expand Down
2 changes: 1 addition & 1 deletion sailboat/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.25.0+7490438.1" # Added by Sailboat
__version__ = "0.25.1" # Added by Sailboat
import os
import glob
import sys
Expand Down
2 changes: 1 addition & 1 deletion sailboat/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,4 +163,4 @@ def main(argv: list = []) -> None:
f.write(out)

if __name__ == "__main__":
main(argv = [sys.argv])
main(argv = sys.argv)
Binary file modified sailboat/__pycache__/__init__.cpython-38.pyc
Binary file not shown.
Binary file modified sailboat/__pycache__/__main__.cpython-38.pyc
Binary file not shown.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

options = {
"name":"sailboat",
"version":"0.25.0",
"version":"0.25.1",
"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', 'tasks=sailboat.other:Tasks', 'workflow=sailboat.builders:Actions', 'github=sailboat.core:Git', 'build_docs_readme=sailboat.other:BuildDocs', 'setcodeversion=sailboat.other:SetVersion']},
"author":"Cole Wilson",
Expand Down

0 comments on commit ebb1fbb

Please sign in to comment.