Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: "3.9"
cache: 'poetry'
cache: "poetry"
- name: Install deps
run: poetry install
- name: Run lint check
Expand All @@ -44,7 +44,7 @@ jobs:
uses: actions/setup-python@v4
with:
python-version: "${{ matrix.py_version }}"
cache: 'poetry'
cache: "poetry"
- name: Install deps
run: poetry install
- name: Run pytest check
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,10 @@
[![PyPI](https://img.shields.io/pypi/v/taskiq?style=for-the-badge)](https://pypi.org/project/taskiq/)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/taskiq?style=for-the-badge)](https://pypistats.org/packages/taskiq)

# Taskiq
<div align="center">
<a href="https://taskiq-python.github.io/"><img src="https://raw.githubusercontent.com/taskiq-python/taskiq/master/imgs/logo.svg" width=600></a>
<hr/>
</div>

Taskiq is an asynchronous distributed task queue for python.
This project takes inspiration from big projects such as [Celery](https://docs.celeryq.dev) and [Dramatiq](https://dramatiq.io/).
Expand Down
Binary file removed docs/.vuepress/public/logo.png
Binary file not shown.
1 change: 1 addition & 0 deletions docs/.vuepress/public/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
title: Home
home: true
heroImage: logo.png
heroImage: logo.svg
heroAlt: logo
heroText: Taskiq python
actions:
Expand Down
Binary file added imgs/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions imgs/logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions vuepress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ export default defineUserConfig({
title: "Taskiq",
description: 'Distributed task queue with full async support',
head: [
['meta', { property: 'og:image', content: 'https://taskiq-python.github.io/logo.png' }]
['meta', { property: 'og:image', content: 'https://taskiq-python.github.io/logo.svg' }]
],
theme: hopeTheme({
logo: "/logo.png",
logo: "/logo.svg",
pure: true,
backToTop: false,
repo: 'taskiq-python/taskiq',
Expand Down