Skip to content

Commit

Permalink
fixes automated building using github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
parashardhapola committed Jul 7, 2021
1 parent f2d449a commit 4cd55bb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.1
0.8.2
4 changes: 4 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
[build.system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta:__legacy__"

[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def run(self):
os.remove(target)
with open(source, 'rb') as src, open(target, 'wb') as dst:
dst.write(src.read())
os.chmod(target, 0o555)
os.chmod(target, 0o655)


if __name__ == "__main__":
Expand Down

0 comments on commit 4cd55bb

Please sign in to comment.