Skip to content

Commit 3d660b6

Browse files
committed
0.1.0-alpha
1 parent 755c9b2 commit 3d660b6

File tree

3 files changed

+14
-8
lines changed

3 files changed

+14
-8
lines changed

dist.sh

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#!/bin/bash
2+
3+
cd `dirname $0`;
4+
PACKAGE_PATH=`pwd`
5+
rm -rf "$PACKAGE_PATH/dist"
6+
python setup.py sdist bdist_wheel --universal
7+
twine upload dist/*
8+
rm -rf "$PACKAGE_PATH/build"
9+
rm -rf "$PACKAGE_PATH/dist"
10+
for f in `ls | grep \.egg-info`; do rm -rf "$PACKAGE_PATH/$f"; done

postq/executors.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,8 @@ def executor(
1616
runner: Callable[[Task, str], Dict], address: str, jobdir: str, task_def: Dict
1717
) -> None:
1818
"""
19-
Execute the given Task definition in its own subprocess shell, and send a message to
19+
Execute the given Task definition using the given runner, and send a message to
2020
the given address with the results when the subprocess has completed.
21-
22-
Task.params:
23-
24-
* command = a string representing the shell command to run.
2521
"""
2622
try:
2723
task = Task(**task_def)

setup.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
22
"name": "postq",
3-
"version": "0.0.3",
4-
"description": "Job queue with API interface, database backend, and choice of job executors.",
3+
"version": "0.1.0",
4+
"description": "Job queue with DAG workflows, PostgreSQL backend, and choice of job executors.",
55
"url": "https://github.com/kruxia/postq",
66
"author": "Sean Harrison",
77
"author_email": "[email protected]",
88
"license": "MPL 2.0",
99
"classifiers": [
10-
"Development Status :: 1 - Planning",
10+
"Development Status :: 3 - Alpha",
1111
"Intended Audience :: Developers",
1212
"License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
1313
"Programming Language :: Python :: 3"

0 commit comments

Comments
 (0)