Skip to content

Commit 5d99ebb

Browse files
committed
chore:update links to new repo
1 parent c521067 commit 5d99ebb

File tree

6 files changed

+25
-20
lines changed

6 files changed

+25
-20
lines changed

.github/CONTRIBUTING.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -34,23 +34,23 @@ community looks forward to your contributions. 🎉
3434
## Code of Conduct
3535

3636
This project and everyone participating in it is governed by the
37-
[django-tasks-scheduler Code of Conduct](https://github.com/dsoftwareinc/django-tasks-scheduler/blob/main/CODE_OF_CONDUCT.md).
37+
[django-tasks-scheduler Code of Conduct](https://github.com/django-commons/django-tasks-scheduler/blob/main/CODE_OF_CONDUCT.md).
3838
By participating, you are expected to uphold this code. Please report unacceptable behavior
3939
4040

4141
## I Have a Question
4242

4343
> If you want to ask a question, we assume that you have read the
44-
> available [Documentation](https://github.com/dsoftwareinc/django-tasks-scheduler).
44+
> available [Documentation](https://github.com/django-commons/django-tasks-scheduler).
4545
4646
Before you ask a question, it is best to search for
47-
existing [Issues](https://github.com/dsoftwareinc/django-tasks-scheduler/issues) that might help you. In case you have
47+
existing [Issues](https://github.com/django-commons/django-tasks-scheduler/issues) that might help you. In case you have
4848
found a suitable issue and still need clarification, you can write your question in this issue. It is also advisable to
4949
search the internet for answers first.
5050

5151
If you then still feel the need to ask a question and need clarification, we recommend the following:
5252

53-
- Open an [Issue](https://github.com/dsoftwareinc/django-tasks-scheduler/issues/new).
53+
- Open an [Issue](https://github.com/django-commons/django-tasks-scheduler/issues/new).
5454
- Provide as much context as you can about what you're running into.
5555
- Provide project and platform versions (nodejs, npm, etc), depending on what seems relevant.
5656

@@ -90,11 +90,11 @@ following steps in advance to help us fix any potential bug as fast as possible.
9090
- Make sure that you are using the latest version.
9191
- Determine if your bug is really a bug and not an error on your side, e.g., using incompatible environment
9292
components/versions (Make sure that you have read
93-
the [documentation](https://github.com/dsoftwareinc/django-tasks-scheduler). If you are looking for support, you might
93+
the [documentation](https://github.com/django-commons/django-tasks-scheduler). If you are looking for support, you might
9494
want to check [this section](#i-have-a-question)).
9595
- To see if other users have experienced (and potentially already solved) the same issue you are having, check if there
9696
is not already a bug report existing for your bug or error in
97-
the [bug tracker](https://github.com/dsoftwareinc/django-tasks-scheduler/issues?q=label%3Abug).
97+
the [bug tracker](https://github.com/django-commons/django-tasks-scheduler/issues?q=label%3Abug).
9898
- Also make sure to search the internet (including Stack Overflow) to see if users outside the GitHub community have
9999
discussed the issue.
100100
- Collect information about the bug:
@@ -114,7 +114,7 @@ following steps in advance to help us fix any potential bug as fast as possible.
114114
115115
We use GitHub issues to track bugs and errors. If you run into an issue with the project:
116116

117-
- Open an [Issue](https://github.com/dsoftwareinc/django-tasks-scheduler/issues/new).
117+
- Open an [Issue](https://github.com/django-commons/django-tasks-scheduler/issues/new).
118118
(Since we can't be sure at this point whether it is a bug or not, we ask you not to talk about a bug yet and
119119
not to label the issue.)
120120
- Explain the behavior you would expect and the actual behavior.
@@ -146,9 +146,9 @@ community to understand your suggestion and find related suggestions.
146146
#### Before Submitting an Enhancement
147147

148148
- Make sure that you are using the latest version.
149-
- Read the [documentation](https://github.com/dsoftwareinc/django-tasks-scheduler) carefully and find out if the
149+
- Read the [documentation](https://github.com/django-commons/django-tasks-scheduler) carefully and find out if the
150150
functionality is already covered, maybe by an individual configuration.
151-
- Perform a [search](https://github.com/dsoftwareinc/django-tasks-scheduler/issues) to see if the enhancement has
151+
- Perform a [search](https://github.com/django-commons/django-tasks-scheduler/issues) to see if the enhancement has
152152
already
153153
been suggested. If it has, add a comment to the existing issue instead of opening a new one.
154154
- Find out whether your idea fits with the scope and aims of the project. It's up to you to make a strong case to
@@ -160,7 +160,7 @@ community to understand your suggestion and find related suggestions.
160160

161161
#### How Do I Submit a Good Enhancement Suggestion?
162162

163-
Enhancement suggestions are tracked as [GitHub issues](https://github.com/dsoftwareinc/django-tasks-scheduler/issues).
163+
Enhancement suggestions are tracked as [GitHub issues](https://github.com/django-commons/django-tasks-scheduler/issues).
164164

165165
- Use a **clear and descriptive title** for the issue to identify the suggestion.
166166
- Provide a **step-by-step description of the suggested enhancement** in as many details as possible.
@@ -180,7 +180,7 @@ Enhancement suggestions are tracked as [GitHub issues](https://github.com/dsoftw
180180
### Your First Code Contribution
181181

182182
Unsure where to begin contributing? You can start by looking through
183-
[help-wanted issues](https://github.com/dsoftwareinc/wiwik/labels/help%20wanted).
183+
[help-wanted issues](https://github.com/django-commons/django-tasks-scheduler/labels/help%20wanted).
184184

185185
Never contributed to open source before? Here are a couple of friendly
186186
tutorials:

.github/workflows/test.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ jobs:
3939
- python-version: '3.12'
4040
django-version: '5.0.7'
4141
coverage: yes
42+
4243
services:
4344
redis:
4445
image: redis:7.2.2
@@ -49,8 +50,10 @@ jobs:
4950
--health-interval 10s
5051
--health-timeout 5s
5152
--health-retries 5
53+
5254
outputs:
5355
version: ${{ steps.getVersion.outputs.VERSION }}
56+
5457
steps:
5558
- uses: actions/checkout@v4
5659

@@ -80,11 +83,13 @@ jobs:
8083
run: |
8184
cd testproject
8285
poetry run python manage.py makemigrations --check
86+
8387
- name: Run Tests without coverage
8488
if: ${{ matrix.coverage != 'yes' }}
8589
run: |
8690
cd testproject
8791
poetry run python manage.py test scheduler
92+
8893
# Steps for coverage check
8994
- name: Run tests with coverage
9095
uses: ./.github/actions/test-coverage
@@ -142,7 +147,6 @@ jobs:
142147
poetry-version: "1.8.3"
143148
poetry-install-additional-args: "-E yaml"
144149

145-
146150
- name: Install django version
147151
shell: bash
148152
run: |
@@ -157,6 +161,7 @@ jobs:
157161
run: |
158162
VERSION=$(poetry version -s --no-ansi -n)
159163
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT
164+
160165
- name: Check for missing migrations
161166
run: |
162167
cd testproject

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Django Tasks Scheduler
22
===================
3-
[![Django CI](https://github.com/dsoftwareinc/django-tasks-scheduler/actions/workflows/test.yml/badge.svg)](https://github.com/dsoftwareinc/django-tasks-scheduler/actions/workflows/test.yml)
3+
[![Django CI](https://github.com/django-commons/django-tasks-scheduler/actions/workflows/test.yml/badge.svg)](https://github.com/django-commons/django-tasks-scheduler/actions/workflows/test.yml)
44
![badge](https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/cunla/b756396efb895f0e34558c980f1ca0c7/raw/django-tasks-scheduler-4.json)
55
[![badge](https://img.shields.io/pypi/dm/django-tasks-scheduler)](https://pypi.org/project/django-tasks-scheduler/)
66

docs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,16 +121,16 @@ sequenceDiagram
121121

122122
## Reporting issues or Features requests
123123

124-
Please report issues via [GitHub Issues](https://github.com/dsoftwareinc/django-tasks-scheduler/issues) .
124+
Please report issues via [GitHub Issues](https://github.com/django-commons/django-tasks-scheduler/issues) .
125125

126126
---
127127

128128
## Acknowledgements
129129

130130
A lot of django-admin views and their tests were adopted from [django-rq](https://github.com/rq/django-rq).
131131

132-
[1]:https://github.com/dsoftwareinc/django-tasks-scheduler/actions/workflows/test.yml/badge.svg
133-
[2]:https://github.com/dsoftwareinc/django-tasks-scheduler/actions/workflows/test.yml
132+
[1]:https://github.com/django-commons/django-tasks-scheduler/actions/workflows/test.yml/badge.svg
133+
[2]:https://github.com/django-commons/django-tasks-scheduler/actions/workflows/test.yml
134134
[3]:https://img.shields.io/endpoint?url=https://gist.githubusercontent.com/cunla/b756396efb895f0e34558c980f1ca0c7/raw/django-tasks-scheduler-4.json
135135
[4]:https://img.shields.io/pypi/dm/django-tasks-scheduler
136136
[5]:https://pypi.org/project/django-tasks-scheduler/

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ site_description: >-
55
Documentation for django-tasks-scheduler django library
66
# Repository
77
repo_name: dsoftwareinc/django-tasks-scheduler
8-
repo_url: https://github.com/dsoftwareinc/django-tasks-scheduler
8+
repo_url: https://github.com/django-commons/django-tasks-scheduler
99

1010
# Copyright
1111
copyright: Copyright © 2022 - 2023 Daniel Moran

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "django-tasks-scheduler"
77
packages = [
88
{ include = "scheduler" },
99
]
10-
version = "2.0.0"
10+
version = "2.0.1"
1111
description = "An async job scheduler for django using redis"
1212
readme = "README.md"
1313
keywords = ["redis", "django", "background-jobs", "job-queue", "task-queue", "redis-queue", "scheduled-jobs"]
@@ -33,11 +33,11 @@ classifiers = [
3333
'Framework :: Django :: 5.0',
3434
'Framework :: Django :: 5.1',
3535
]
36-
homepage = "https://github.com/dsoftwareinc/django-tasks-scheduler"
36+
homepage = "https://github.com/django-commons/django-tasks-scheduler"
3737
documentation = "https://django-tasks-scheduler.readthedocs.io/en/latest/"
3838

3939
[tool.poetry.urls]
40-
"Bug Tracker" = "https://github.com/dsoftwareinc/django-tasks-scheduler/issues"
40+
"Bug Tracker" = "https://github.com/django-commons/django-tasks-scheduler/issues"
4141
"Funding" = "https://github.com/sponsors/cunla"
4242

4343
[tool.poetry.dependencies]

0 commit comments

Comments
 (0)