Skip to content

Commit

Permalink
added dependencies to workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
cole-wilson committed Feb 1, 2021
1 parent 1edc44b commit 782af38
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/sailboat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
python-version: '3.x'
- name: Install Dependencies and Build
run: |
pip install sailboat
pip install sailboat toml semver requests setuptools twine
python -m sailboat.__main__ build + ${{ matrix.builds }}
- name: Check for prerelease
Expand Down
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.24.4
# v0.24.5

class Sailboat < Formula
include Language::Python::Virtualenv
Expand Down
Binary file removed dist/pypi/sailboat-0.24.4.tar.gz
Binary file not shown.
Binary file not shown.
Binary file added dist/pypi/sailboat-0.24.5.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion sailboat.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 2.1
Name: sailboat
Version: 0.24.4
Version: 0.24.5
Summary: A quick and easy way to distribute your Python projects!
Home-page: https://github.com/cole-wilson/sailboat
Author: Cole Wilson
Expand Down
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.24.4"
latest_build = "0.24.5"
author = "Cole Wilson"
latest_release = "0.24.3"
release-notes = "added dependencies to workflow file, removed build from pyinstaller version filename"
latest_release = "0.24.4"
release-notes = "fix pyinstaller bug"


# Resource Setup:
Expand Down
2 changes: 1 addition & 1 deletion sailboat/resources/sailboat.yml.template
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
python-version: '3.x'
- name: Install Dependencies and Build
run: |
pip install sailboat
pip install sailboat {dependencies}
python -m sailboat.__main__ build + ${{{{ matrix.builds }}}}

- name: Check for prerelease
Expand Down
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.24.4",
"version":"0.24.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",
Expand Down

0 comments on commit 782af38

Please sign in to comment.