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
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Thanks for your interest in contributing! taskito is a hybrid Rust + Python proj
### Clone and Install

```bash
git clone https://github.com/pratyush618/taskito.git
git clone https://github.com/ByteVeda/taskito.git
cd taskito

# Create a virtual environment
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![PyPI version](https://img.shields.io/pypi/v/taskito.svg)](https://pypi.org/project/taskito/)
[![Python versions](https://img.shields.io/pypi/pyversions/taskito.svg)](https://pypi.org/project/taskito/)
[![License](https://img.shields.io/pypi/l/taskito.svg)](https://github.com/pratyush618/taskito/blob/master/LICENSE)
[![License](https://img.shields.io/pypi/l/taskito.svg)](https://github.com/ByteVeda/taskito/blob/master/LICENSE)

A Rust-powered task queue for Python. No broker required — just SQLite or Postgres.

Expand Down
2 changes: 1 addition & 1 deletion docs/assets/js/copy-markdown.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
document.addEventListener("DOMContentLoaded", function () {
const GITHUB_RAW_BASE =
"https://raw.githubusercontent.com/pratyush618/taskito/master/docs/";
"https://raw.githubusercontent.com/ByteVeda/taskito/master/docs/";

function getSourcePath() {
// Try the edit button first (most reliable)
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Building from source requires a Rust toolchain (1.70+).
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

# Clone and build
git clone https://github.com/pratyush618/taskito.git
git clone https://github.com/ByteVeda/taskito.git
cd taskito
python -m venv .venv
source .venv/bin/activate
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@ classifiers = [
]
dependencies = ["cloudpickle>=3.0"]
[project.urls]
Homepage = "https://github.com/pratyush618/taskito"
Homepage = "https://github.com/ByteVeda/taskito"
Documentation = "https://taskito.grigori.in"
Repository = "https://github.com/pratyush618/taskito"
Changelog = "https://github.com/pratyush618/taskito/blob/master/docs/changelog.md"
Issues = "https://github.com/pratyush618/taskito/issues"
Repository = "https://github.com/ByteVeda/taskito"
Changelog = "https://github.com/ByteVeda/taskito/blob/master/docs/changelog.md"
Issues = "https://github.com/ByteVeda/taskito/issues"

[project.optional-dependencies]
dev = ["pytest>=7.0", "pytest-asyncio>=0.21", "pytest-cov>=4.0", "ruff>=0.8", "mypy>=1.13"]
Expand Down
8 changes: 4 additions & 4 deletions zensical.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[project]
site_name = "taskito"
site_description = "Rust-powered task queue for Python. No broker required."
site_url = "https://taskito.grigori.in"
repo_url = "https://github.com/pratyush618/taskito"
repo_name = "pratyush618/taskito"
site_url = "https://docs.byteveda.org/taskito"
repo_url = "https://github.com/ByteVeda/taskito"
repo_name = "ByteVeda/taskito"

extra_javascript = ["assets/js/copy-markdown.js"]
extra_css = ["assets/css/custom.css"]
Expand Down Expand Up @@ -150,7 +150,7 @@ search = {}

[[project.extra.social]]
icon = "fontawesome/brands/github"
link = "https://github.com/pratyush618/taskito"
link = "https://github.com/ByteVeda/taskito"

[[project.extra.social]]
icon = "fontawesome/brands/python"
Expand Down
Loading