Skip to content

Commit

Permalink
Merge pull request #268 from cary-rowen/changeUpdateURL
Browse files Browse the repository at this point in the history
Improving Version Handling and Merging Changes from #267, pointing update URL to github repo
  • Loading branch information
cary-rowen authored Sep 12, 2024
2 parents ab4f035 + 0809e8f commit 2abfb94
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bookworm/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
version_ex = "2022.1.0.30"
url = "https://github.com/blindpandas/bookworm"
website = "https://getbookworm.com"
update_url = "https://getbookworm.com/update_info.json"
update_url = "https://github.com/blindpandas/bookworm/blob/main/update_info.json"
copyright = f"Copyright (c) 2022 {author} and {display_name} contributors."
exit_code = 0
is_frozen = getattr(sys, "frozen", False) and hasattr(sys, "_MEIPASS")
Expand Down
2 changes: 1 addition & 1 deletion tests/test_otau.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def test_is_not_valid_identifier():


def test_is_valid_identifier():
valid_identifiers = ('', 'a', 'b', 'dev')
valid_identifiers = ('', 'a', 'b', 'rc')
for identifier in valid_identifiers:
channel = UpdateChannel(identifier)

Expand Down

0 comments on commit 2abfb94

Please sign in to comment.