Skip to content

Commit 0fd4c77

Browse files
author
Darren Govoni
committed
Updates
1 parent b23b852 commit 0fd4c77

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,7 @@ with blazer.begin():
100100

101101
To run:
102102
```
103+
(venv) $ export PYTHONPATH=.
103104
(venv) $ mpirun -n 4 python blazer/examples/example1.py
104105
PARALLEL1: [{'this': 1}, {'this': 2}, {'this': 3}, {'this': 4}, {'this': 5}]
105106
PARALLEL2: [{'this': 4}, {'this': 6}, {'this': 2}, {'this': 8}, {'this': 10}]

setup.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def run(self):
7979

8080
class CleanCommand(Command):
8181
"""Custom clean command to tidy up the project root."""
82-
CLEAN_FILES = './celerybeat* ./docs/_build ./*.out ./*.log ./work/* ./build ./dist ./__pycache__ ./*/__pycache__ ./*.pyc ./ssh*py ./*.tgz ./.pytest_cache ./*.egg-info'.split(
82+
CLEAN_FILES = './docs/_build ./*.out ./*.log ./work/* ./build ./dist ./__pycache__ ./*/__pycache__ ./*.pyc ./ssh*py ./*.tgz ./.pytest_cache ./*.egg-info'.split(
8383
' ')
8484

8585
user_options = []
@@ -124,7 +124,6 @@ def run(self):
124124
include_package_data=True,
125125
python_requires=">=3.8.*",
126126
install_requires=[
127-
'celery==5.2.3'
128127
],
129128
license=about['__license__'],
130129
zip_safe=False,

0 commit comments

Comments
 (0)