File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -184,7 +184,7 @@ This queue does not allow duplicate items.
184184 >> >
185185
186186 Example usage of SQLite3 based ``SQLiteAckQueue ``/``UniqueAckQ ``
187- ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
187+ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
188188The core functions:
189189
190190- ``get ``: get from queue and mark item as unack
@@ -402,7 +402,7 @@ Explicit resource reclaim
402402
403403For some reasons, an application may require explicit reclamation for file
404404handles or sql connections before end of execution. In these cases, user can
405- simply call:
405+ simply call:
406406.. code-block :: python
407407
408408 q = Queue() # or q = persistqueue.SQLiteQueue('mypath', auto_commit=True)
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
2+ set -e
23BASE_DIR=` pwd`
34NAME=$( basename $BASE_DIR )
45if [[ " $NAME " != " persist-queue" ]]; then
@@ -7,4 +8,6 @@ if [[ "$NAME" != "persist-queue" ]];then
78fi
89python setup.py build sdist
910python setup.py build bdist_wheel
11+ twine check ${BASE_DIR} /dist/* .tar.gz
12+ twine check ${BASE_DIR} /dist/* .whl
1013twine upload ${BASE_DIR} /dist/*
You can’t perform that action at this time.
0 commit comments