Skip to content

Commit a7946ba

Browse files
committed
verbage tweaks, punt on django packages fetch
1 parent fe7a408 commit a7946ba

File tree

3 files changed

+12
-13
lines changed

3 files changed

+12
-13
lines changed

.github/workflows/release.yml

Lines changed: 10 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,6 @@ jobs:
7777
github-release:
7878
name: Publish GitHub Release
7979
if: ${{ (github.event_name == 'workflow_dispatch' && github.event.inputs.github == 'true') || github.event_name != 'workflow_dispatch' }}
80-
needs:
81-
- publish-to-pypi
8280
runs-on: ubuntu-latest
8381

8482
permissions:
@@ -142,12 +140,13 @@ jobs:
142140
repository-url: https://test.pypi.org/legacy/
143141
skip-existing: true
144142

145-
notify-django-packages:
146-
name: Notify Django Packages
147-
runs-on: ubuntu-latest
148-
needs:
149-
- publish-to-pypi
150-
steps:
151-
- name: Notify Django Packages
152-
run:
153-
curl -X GET "https://djangopackages.org/packages/django-typer/fetch-data/"
143+
# TODO fetch-data requires login
144+
# notify-django-packages:
145+
# name: Notify Django Packages
146+
# runs-on: ubuntu-latest
147+
# needs:
148+
# - publish-to-pypi
149+
# steps:
150+
# - name: Notify Django Packages
151+
# run:
152+
# curl -X GET "https://djangopackages.org/packages/django-typer/fetch-data/"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
[![Lint Status](https://github.com/django-commons/django-typer/actions/workflows/lint.yml/badge.svg?branch=main)](https://github.com/django-commons/django-typer/actions/workflows/lint.yml?query=branch:main)
1414
[![Published on Django Packages](https://img.shields.io/badge/Published%20on-Django%20Packages-0c3c26)](https://djangopackages.org/packages/p/django-typer/)
1515

16-
Use static typing to define the CLI for your [Django](https://www.djangoproject.com/) management commands with [Typer](https://typer.tiangolo.com/). Optionally use the provided [TyperCommand](https://django-typer.readthedocs.io/en/latest/reference.html#django_typer.TyperCommand) class that inherits from [BaseCommand](https://docs.djangoproject.com/en/stable/howto/custom-management-commands/#django.core.management.BaseCommand). This class maps the [Typer](https://typer.tiangolo.com/) interface onto a class based interface that Django developers will be familiar with. All of the [BaseCommand](https://docs.djangoproject.com/en/stable/howto/custom-management-commands/#django.core.management.BaseCommand) functionality is preserved, so that [TyperCommand](https://django-typer.readthedocs.io/en/latest/reference.html#django_typer.TyperCommand) can be a drop in replacement.
16+
Use static typing to define the CLI for your [Django](https://www.djangoproject.com/) management commands with [Typer](https://typer.tiangolo.com/). Optionally use the provided [TyperCommand](https://django-typer.readthedocs.io/en/latest/reference.html#django_typer.TyperCommand) class that inherits from [BaseCommand](https://docs.djangoproject.com/en/stable/howto/custom-management-commands/#django.core.management.BaseCommand). This class maps the [Typer](https://typer.tiangolo.com/) interface onto a class based interface that Django developers will be familiar with. All of the [BaseCommand](https://docs.djangoproject.com/en/stable/howto/custom-management-commands/#django.core.management.BaseCommand) functionality is inherited, so that [TyperCommand](https://django-typer.readthedocs.io/en/latest/reference.html#django_typer.TyperCommand) can be a drop in replacement.
1717

1818
**django-typer makes it easy to:**
1919

doc/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Django Typer
88
Use static typing to define the CLI for your Django_ management commands with Typer_. Optionally
99
use the provided :class:`~django_typer.management.TyperCommand` class that inherits from
1010
BaseCommand_. This class maps the Typer_ interface onto a class based interface that Django
11-
developers will be familiar with. All of the BaseCommand_ functionality is preserved, so that
11+
developers will be familiar with. All of the BaseCommand_ functionality is inherited, so that
1212
:class:`~django_typer.management.TyperCommand` can be a drop in replacement.
1313

1414
**django-typer makes it easy to:**

0 commit comments

Comments
 (0)