Skip to content

Commit 98ea2e9

Browse files
authored
Added new logo. (#48)
Signed-off-by: Pavel Kirilin <[email protected]>
1 parent 6cde427 commit 98ea2e9

File tree

8 files changed

+11
-6
lines changed

8 files changed

+11
-6
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: actions/setup-python@v4
2222
with:
2323
python-version: "3.9"
24-
cache: 'poetry'
24+
cache: "poetry"
2525
- name: Install deps
2626
run: poetry install
2727
- name: Run lint check
@@ -44,7 +44,7 @@ jobs:
4444
uses: actions/setup-python@v4
4545
with:
4646
python-version: "${{ matrix.py_version }}"
47-
cache: 'poetry'
47+
cache: "poetry"
4848
- name: Install deps
4949
run: poetry install
5050
- name: Run pytest check

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@
22
[![PyPI](https://img.shields.io/pypi/v/taskiq?style=for-the-badge)](https://pypi.org/project/taskiq/)
33
[![PyPI - Downloads](https://img.shields.io/pypi/dm/taskiq?style=for-the-badge)](https://pypistats.org/packages/taskiq)
44

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

710
Taskiq is an asynchronous distributed task queue for python.
811
This project takes inspiration from big projects such as [Celery](https://docs.celeryq.dev) and [Dramatiq](https://dramatiq.io/).

docs/.vuepress/public/logo.png

-161 KB
Binary file not shown.

docs/.vuepress/public/logo.svg

Lines changed: 1 addition & 0 deletions
Loading

docs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Home
33
home: true
4-
heroImage: logo.png
4+
heroImage: logo.svg
55
heroAlt: logo
66
heroText: Taskiq python
77
actions:

imgs/logo.png

44.9 KB
Loading

imgs/logo.svg

Lines changed: 1 addition & 0 deletions
Loading

vuepress.config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ export default defineUserConfig({
77
title: "Taskiq",
88
description: 'Distributed task queue with full async support',
99
head: [
10-
['meta', { property: 'og:image', content: 'https://taskiq-python.github.io/logo.png' }]
10+
['meta', { property: 'og:image', content: 'https://taskiq-python.github.io/logo.svg' }]
1111
],
1212
theme: hopeTheme({
13-
logo: "/logo.png",
13+
logo: "/logo.svg",
1414
pure: true,
1515
backToTop: false,
1616
repo: 'taskiq-python/taskiq',

0 commit comments

Comments
 (0)