diff --git a/README.md b/README.md index 0350da7..095682c 100644 --- a/README.md +++ b/README.md @@ -89,7 +89,7 @@ All together now. supertask \ --http-listen-address=localhost:4243 \ --pre-delete-jobs \ - --pre-seed-jobs=https://github.com/WalBeh/scheduler-playground/raw/master/cronjobs.json + --pre-seed-jobs=https://github.com/pyveci/supertask/raw/main/cronjobs.json ``` @@ -101,7 +101,7 @@ documentation]. [APScheduler]: https://pypi.org/project/APScheduler/ [cron]: https://en.wikipedia.org/wiki/Cron -[development sandbox documentation]: https://github.com/WalBeh/scheduler-playground/blob/master/docs/sandbox.md +[development sandbox documentation]: https://github.com/pyveci/supertask/blob/master/docs/sandbox.md [DWIM]: https://en.wikipedia.org/wiki/DWIM [FastAPI]: https://pypi.org/project/fastapi/ [Pydantic]: https://pypi.org/project/pydantic/ diff --git a/docs/sandbox.md b/docs/sandbox.md index 2bd3b09..b2a550e 100644 --- a/docs/sandbox.md +++ b/docs/sandbox.md @@ -4,8 +4,8 @@ Acquire sources. ```shell -git clone https://github.com/WalBeh/scheduler-playground -cd scheduler-playground +git clone https://github.com/pyveci/supertask +cd supertask ``` It is recommended to use a Python virtualenv for the subsequent operations. diff --git a/pyproject.toml b/pyproject.toml index 1cceef0..91b51b4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -122,10 +122,10 @@ test = [ "pytest-mock<4", ] [project.urls] -changelog = "https://github.com/WalBeh/scheduler-playground/blob/master/CHANGES.rst" -documentation = "https://github.com/WalBeh/scheduler-playground" -homepage = "https://github.com/WalBeh/scheduler-playground" -repository = "https://github.com/WalBeh/scheduler-playground" +changelog = "https://github.com/pyveci/supertask/blob/main/CHANGES.md" +documentation = "https://github.com/pyveci/supertask" +homepage = "https://github.com/pyveci/supertask" +repository = "https://github.com/pyveci/supertask" [project.scripts] st = "supertask.cli:cli" supertask = "supertask.cli:cli" diff --git a/tests/conftest.py b/tests/conftest.py index 63e96d7..69d62b7 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -20,4 +20,4 @@ def cronjobs_json_file() -> str: @pytest.fixture(scope="session") def cronjobs_json_url() -> str: - return "https://github.com/WalBeh/scheduler-playground/raw/master/cronjobs.json" + return "https://github.com/pyveci/supertask/raw/main/cronjobs.json"