Skip to content

Commit

Permalink
chore: Update alfred-pyworkflow
Browse files Browse the repository at this point in the history
  • Loading branch information
harrtho committed Dec 21, 2022
1 parent f7913fc commit 761e53e
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Pint==0.20.1
Alfred-PyWorkflow==2.0.0b0
Alfred-PyWorkflow==2.0.0b1
docopt==0.6.2
2 changes: 1 addition & 1 deletion src/info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ UPDATE_INTERVAL is the number of minutes between exchange rate updates.</string>
<string>APP_KEY</string>
</array>
<key>version</key>
<string>4.0.0</string>
<string>4.0.1</string>
<key>webaddress</key>
<string>https://github.com/harrtho/alfred-convert</string>
</dict>
Expand Down
2 changes: 1 addition & 1 deletion src/workflow/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.0b0
2.0.0b1
6 changes: 4 additions & 2 deletions src/workflow/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -2749,7 +2749,8 @@ def check_update(self, force=False):

from .background import run_in_background

cmd = ['/usr/bin/env', 'python3', '-m', 'workflow.update', 'check', repo, version]
cmd = ['/usr/bin/env', 'python3', '-m',
'workflow.update', 'check', repo, version]

if self.prereleases:
cmd.append('--prereleases')
Expand Down Expand Up @@ -2784,7 +2785,8 @@ def start_update(self):

from .background import run_in_background

cmd = ['/usr/bin/env python3', '-m', 'workflow.update', 'install', repo, version]
cmd = ['/usr/bin/env', 'python3', '-m',
'workflow.update', 'install', repo, version]

if self.prereleases:
cmd.append('--prereleases')
Expand Down

0 comments on commit 761e53e

Please sign in to comment.