Skip to content

Commit

Permalink
Changes to publish package using GitHub Action - v1.0.9
Browse files Browse the repository at this point in the history
  • Loading branch information
soachishti committed Apr 20, 2021
1 parent 45bf150 commit b5bab56
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
twine upload dist/mosspy-*-py2.py3-none-any.whl
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ m.addFilesByWildcard("submission/a01-*.py")
url = m.send(lambda file_path, display_name: print('*', end='', flush=True))
print()


print ("Report Url: " + url)

# Save report file
Expand All @@ -49,7 +48,7 @@ mosspy.download_report(url, "submission/report/", connections=8, log_level=10, o

## Python Compatibility

* [Python](http://www.python.com) - v2.7.* and v3.*
* [Python](http://www.python.com) - v3

## Similar Project

Expand Down
2 changes: 1 addition & 1 deletion moss_usage.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import mosspy

userid = 987654321
userid = 987654321 # add your userid here

m = mosspy.Moss(userid, "python")

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
setup(
name = 'mosspy',
packages = ['mosspy'], # this must be the same as the name above
version = '1.0.8',
version = '1.0.9',
description = 'A Python client for Moss: A System for Detecting Software Similarity',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit b5bab56

Please sign in to comment.