Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup: pytest-celery[all]==1.0.0b4 -> pytest-celery[all]==1.0.0 #330

Merged
merged 1 commit into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/userguide/examples/hybrid_setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ These files are taken from the :ref:`test_gevent_pool` example with one simple c

.. code-block:: python

RUN pip install "celery[gevent]" "pytest-celery[all]==1.0.0b4"
RUN pip install "celery[gevent]" "pytest-celery[all]==1.0.0"

The Dockerfile doesn't use the requirements file, but instead installs the packages directly.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ ENV WORKER_QUEUE=$CELERY_WORKER_QUEUE

# Install packages
RUN pip install --no-cache-dir --upgrade pip
RUN pip install "celery[gevent]" "pytest-celery[all]==1.0.0b4"
RUN pip install "celery[gevent]" "pytest-celery[all]==1.0.0"

# The workdir must be /app
WORKDIR /app
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ ENV WORKER_QUEUE=$CELERY_WORKER_QUEUE

# Install packages
RUN pip install --no-cache-dir --upgrade pip
RUN pip install celery==4.4.7 "pytest-celery[all]==1.0.0b4"
RUN pip install celery==4.4.7 "pytest-celery[all]==1.0.0"

# The workdir must be /app
WORKDIR /app
Expand Down