Skip to content
This repository has been archived by the owner on Mar 4, 2024. It is now read-only.

Commit

Permalink
A3S-2518 Remove print line and document the process of generating a n…
Browse files Browse the repository at this point in the history
…ew version of MRQ (#12)

* Remove print line
* Update readme.md
* Up version
  • Loading branch information
ghabrielv authored Feb 15, 2023
1 parent e6d05e9 commit 3389b17
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,17 @@ This was a preview on the very basic features of MRQ. What makes it actually use
These features will be demonstrated in a future example of a simple web crawler.


## How to compile a new version of MRQ
- Go to mrq/version.py file and update from 0.9.28.1 to 0.9.29 (for example)
- Commit and pushes the last changes
- Go to in the master branch (after merge pull request)
- Execute the command `python setup.py sdist`
- Make sure you have installed the python twine package (`pip install twine`).
- Execute the twine command to upload the new version of mrq to pypi.org (`twine upload dist/mrq-custom-0.9.29.tar.gz`)
- In the previous step you will be asked for the pypi.org credentials are in 1password, you must request them in #password_requests
- Update all applications that use MRQ with this version in their requirements.txt


# More

Full documentation is available on [readthedocs](http://mrq.readthedocs.org/en/latest/)
1 change: 0 additions & 1 deletion mrq/basetasks/cleaning.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ class RequeueRetryJobs(Task):
max_concurrency = 1

def run(self, params):
print("IN")
return run_task("mrq.basetasks.utils.JobAction", {
"status": "retry",
"dateretry": {"$lte": datetime.datetime.utcnow()},
Expand Down
2 changes: 1 addition & 1 deletion mrq/version.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION = "0.9.29"
VERSION = "0.9.30"

if __name__ == "__main__":
import sys
Expand Down

0 comments on commit 3389b17

Please sign in to comment.