Skip to content

Commit

Permalink
Version Bump
Browse files Browse the repository at this point in the history
  • Loading branch information
jcmiller11 committed Aug 6, 2023
1 parent 55f385b commit ad81135
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion psbs/htmlbuilder.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

def build_html(engine, source):
standalone_url = "/".join(engine.split("/") + ["standalone_inlined.txt"])
response = get(standalone_url,timeout=5)
response = get(standalone_url, timeout=5)
if response.status_code != 200:
print("Error: Can't build html game")
print(f" Unable to download {standalone_url}")
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@

setup(
name='psbs',
version='0.2.1',
version='0.2.2',
python_requires='>=3.8',
description='PuzzleScript Build System',
long_description=long_description,
long_description_content_type='text/markdown',
author='J.C. Miller',
author_email='[email protected]',
url='https://github.com/jcmiller11/PSBS',
download_url = 'https://github.com/jcmiller11/PSBS/archive/refs/tags/0.2.1.tar.gz',
download_url = 'https://github.com/jcmiller11/PSBS/archive/refs/tags/0.2.2.tar.gz',
license='MIT',
packages=find_packages(),
package_data={'': ['example.txt']},
Expand Down

0 comments on commit ad81135

Please sign in to comment.