Skip to content

Update repos links in readme and package metadata #106

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 22, 2024
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
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
[![PyPI python versions](https://img.shields.io/pypi/pyversions/drf-excel.svg)](https://pypi.python.org/pypi/drf-excel/)
[![PyPI django versions](https://img.shields.io/pypi/djversions/drf-excel.svg)](https://pypi.org/project/drf-excel/)
[![PyPI status](https://img.shields.io/pypi/status/drf-excel.svg)](https://pypi.python.org/pypi/drf-excel)
[![CI](https://github.com/wharton/drf-excel/actions/workflows/test.yml/badge.svg)](https://github.com/wharton/drf-excel/actions/workflows/test.yml)
[![codecov](https://codecov.io/gh/wharton/drf-excel/graph/badge.svg?token=EETTI9XRNO)](https://codecov.io/gh/wharton/drf-excel)
[![CI](https://github.com/django-commons/drf-excel/actions/workflows/test.yml/badge.svg)](https://github.com/django-commons/drf-excel/actions/workflows/test.yml)
[![codecov](https://codecov.io/gh/django-commons/drf-excel/graph/badge.svg?token=EETTI9XRNO)](https://codecov.io/gh/django-commons/drf-excel)

`drf-excel` provides an Excel spreadsheet (xlsx) renderer for Django REST Framework. It uses OpenPyXL to create the spreadsheet and provide the file to the end user.

Expand Down Expand Up @@ -297,7 +297,7 @@ def custom_value_formatter(val):
results: [
{
title: 'XLSX renderer',
url: 'https://github.com/wharton/drf-excel'
url: 'https://github.com/django-commons/drf-excel'
returned_dict: {
val1: {
title: 'Sometimes'
Expand Down Expand Up @@ -338,8 +338,8 @@ xlsx_custom_mappings = {

## Release Notes and Contributors

* [Release notes](https://github.com/wharton/drf-excel/releases)
* [Our wonderful contributors](https://github.com/wharton/drf-excel/graphs/contributors)
* [Release notes](https://github.com/django-commons/drf-excel/releases)
* [Our wonderful contributors](https://github.com/django-commons/drf-excel/graphs/contributors)

## Maintainers

Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,9 @@ dev = [
]

[project.urls]
"Homepage" = "https://github.com/wharton/drf-excel/"
"Repository" = "https://github.com/wharton/drf-excel/"
"Documentation" = "https://github.com/wharton/drf-excel/"
"Homepage" = "https://github.com/django-commons/drf-excel/"
"Repository" = "https://github.com/django-commons/drf-excel/"
"Documentation" = "https://github.com/django-commons/drf-excel/"

[build-system]
requires = ["setuptools>=67", "setuptools_scm>=7", "wheel"]
Expand Down