Skip to content

Commit c617b06

Browse files
authored
Merge pull request #4 from anexia-it/astocker/move-to-new-organisation
ANXOS-202: Updated URLs for new Anexia organisation
2 parents c3d61de + d93726b commit c617b06

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@ jobs:
3333
- name: Install dependencies and package
3434
run: |
3535
python -m pip install --upgrade pip
36-
pip install -r requirements.txt
37-
pip install celery~=${{ matrix.celery-version }}.0
36+
pip install -r "requirements.txt"
37+
pip install "celery~=${{ matrix.celery-version }}.0"
38+
pip install "importlib-metadata<5.0"
3839
3940
- name: Lint with flake8
4041
run: |

CHANGELOG.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,5 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
### Added
1111
- AMQP result backend for Celery
1212

13-
[Unreleased]: https://github.com/anexia-it/celery-amqp-backend/compare/1.0.0...HEAD
14-
[1.0.0]: https://github.com/anexia-it/celery-amqp-backend/releases/tag/1.0.0
13+
[Unreleased]: https://github.com/anexia/celery-amqp-backend/compare/1.0.0...HEAD
14+
[1.0.0]: https://github.com/anexia/celery-amqp-backend/releases/tag/1.0.0

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
celery-amqp-backend
22
===================
33

4-
[![PyPI](https://badge.fury.io/py/celery-amqp-backend.svg)](https://pypi.org/project/celery-amqp-backend/)
5-
[![Test Status](https://github.com/anexia-it/celery-amqp-backend/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/anexia-it/celery-amqp-backend/actions/workflows/test.yml)
6-
[![Codecov](https://codecov.io/gh/anexia-it/celery-amqp-backend/branch/main/graph/badge.svg)](https://codecov.io/gh/anexia-it/celery-amqp-backend)
4+
[![PyPI](https://img.shields.io/pypi/v/celery-amqp-backend)](https://pypi.org/project/celery-amqp-backend/)
5+
[![Test Status](https://github.com/anexia/celery-amqp-backend/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/anexia/celery-amqp-backend/actions/workflows/test.yml)
6+
[![Codecov](https://codecov.io/gh/anexia/celery-amqp-backend/branch/main/graph/badge.svg)](https://codecov.io/gh/anexia/celery-amqp-backend)
77

88
`celery-amqp-backend` is a rewrite of the Celery's original `amqp://` result backend, which was removed from Celery
99
with version 5.0. Celery encourages you to use the newer `rpc://` result backend, as it does not create a new

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
description='A rewrite of the original Celery AMQP result backend that supports Celery 5.0 and newer.',
1818
long_description=readme,
1919
long_description_content_type='text/markdown',
20-
url='https://github.com/anexia-it/celery-amqp-backend',
20+
url='https://github.com/anexia/celery-amqp-backend',
2121
author='Andreas Stocker',
2222
author_email='AStocker@anexia-it.com',
2323
install_requires=[

0 commit comments

Comments
 (0)