Skip to content
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
2 changes: 1 addition & 1 deletion .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ for docstrings.

## Localization

See [README](https://github.com/jmoiron/humanize#localization).
See [README](https://github.com/python-humanize/humanize#localization).
2 changes: 1 addition & 1 deletion .github/workflows/labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Sync labels
on:
push:
branches:
- master
- main
paths:
- .github/labels.yml
workflow_dispatch:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ on:
push:
# branches to consider in the event; optional, defaults to all
branches:
- master
- main
workflow_dispatch:

jobs:
update_release_draft:
if: github.repository_owner == 'jmoiron'
if: github.repository_owner == 'python-humanize'
runs-on: ubuntu-latest
steps:
# Drafts your next release notes as pull requests are merged into "master"
# Drafts your next release notes as pull requests are merged into "main"
- uses: release-drafter/release-drafter@v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
[![Supported Python versions](https://img.shields.io/pypi/pyversions/humanize.svg?logo=python&logoColor=FFE873)](https://pypi.org/project/humanize/)
[![Documentation Status](https://readthedocs.org/projects/python-humanize/badge/?version=latest)](https://python-humanize.readthedocs.io/en/latest/?badge=latest)
[![PyPI downloads](https://img.shields.io/pypi/dm/humanize.svg)](https://pypistats.org/packages/humanize)
[![GitHub Actions status](https://github.com/jmoiron/humanize/workflows/Test/badge.svg)](https://github.com/jmoiron/humanize/actions)
[![codecov](https://codecov.io/gh/hugovk/humanize/branch/master/graph/badge.svg)](https://codecov.io/gh/hugovk/humanize)
[![MIT License](https://img.shields.io/github/license/jmoiron/humanize.svg)](LICENCE)
[![GitHub Actions status](https://github.com/python-humanize/humanize/workflows/Test/badge.svg)](https://github.com/python-humanize/humanize/actions)
[![codecov](https://codecov.io/gh/python-humanize/humanize/branch/main/graph/badge.svg)](https://codecov.io/gh/python-humanize/humanize)
[![MIT License](https://img.shields.io/github/license/python-humanize/humanize.svg)](LICENCE)
[![Tidelift](https://tidelift.com/badges/package/pypi/humanize)](https://tidelift.com/subscription/pkg/pypi-humanize?utm_source=pypi-humanize&utm_medium=badge)

This modest package contains various common humanization utilities, like turning
Expand Down
12 changes: 6 additions & 6 deletions RELEASING.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# Release Checklist

- [ ] Get master to the appropriate code release state.
[GitHub Actions](https://github.com/jmoiron/humanize/actions) should be running
cleanly for all merges to master.
[![GitHub Actions status](https://github.com/jmoiron/humanize/workflows/Test/badge.svg)](https://github.com/jmoiron/humanize/actions)
- [ ] Get `main` to the appropriate code release state.
[GitHub Actions](https://github.com/python-humanize/humanize/actions) should be running
cleanly for all merges to `main`.
[![GitHub Actions status](https://github.com/python-humanize/humanize/workflows/Test/badge.svg)](https://github.com/python-humanize/humanize/actions)

* [ ] Start from a freshly cloned repo:

```bash
cd /tmp
rm -rf humanize
git clone https://github.com/jmoiron/humanize
git clone https://github.com/python-humanize/humanize
cd humanize
# Generate translation binaries
scripts/generate-translation-binaries.sh
Expand Down Expand Up @@ -61,7 +61,7 @@ python3 -c "import humanize; print(humanize.__version__)"
git push --tags
```

* [ ] Edit release draft, adjust text if needed: https://github.com/jmoiron/humanize/releases
* [ ] Edit release draft, adjust text if needed: https://github.com/python-humanize/humanize/releases

* [ ] Check next tag is correct, amend if needed

Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
site_name: humanize
site_url: https://python-humanize.readthedocs.io
repo_url: https://github.com/jmoiron/humanize
repo_url: https://github.com/python-humanize/humanize
theme:
name: material
palette:
Expand Down
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = humanize
description = Python humanize utilities
long_description = file: README.md
long_description_content_type = text/markdown
url = https://github.com/jmoiron/humanize
url = https://github.com/python-humanize/humanize
author = Jason Moiron
author_email = jmoiron@jmoiron.net
maintainer = Hugo van Kemenade
Expand All @@ -27,11 +27,11 @@ classifiers =
Topic :: Text Processing :: General
keywords = humanize time size
project_urls =
Source=https://github.com/jmoiron/humanize
Issue tracker=https://github.com/jmoiron/humanize/issues
Source=https://github.com/python-humanize/humanize
Issue tracker=https://github.com/python-humanize/humanize/issues
Funding=https://tidelift.com/subscription/pkg/pypi-humanize?utm_source=pypi-humanize&utm_medium=pypi
Documentation=https://python-humanize.readthedocs.io/
Release notes=https://github.com/jmoiron/humanize/releases
Release notes=https://github.com/python-humanize/humanize/releases

[options]
packages = find:
Expand Down
2 changes: 1 addition & 1 deletion src/humanize/locale/da_DK/LC_MESSAGES/humanize.po
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: humanize\n"
"Report-Msgid-Bugs-To: https://github.com/jmoiron/humanize/issues\n"
"Report-Msgid-Bugs-To: https://github.com/python-humanize/humanize/issues\n"
"POT-Creation-Date: 2021-07-05 09:49+0200\n"
"PO-Revision-Date: 2021-11-24 22:25+0200\n"
"Last-Translator: YURII DEREVYCH <gkhelloworld@gmail.com>\n"
Expand Down
2 changes: 1 addition & 1 deletion src/humanize/locale/sv_SE/LC_MESSAGES/humanize.po
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
msgid ""
msgstr ""
"Project-Id-Version: humanize\n"
"Report-Msgid-Bugs-To: https://github.com/jmoiron/humanize/issues\n"
"Report-Msgid-Bugs-To: https://github.com/python-humanize/humanize/issues\n"
"POT-Creation-Date: 2021-07-05 09:49+0200\n"
"PO-Revision-Date: 2021-07-05 10:30+0200\n"
"Last-Translator: Kess Vargavind <vargavind@gmail.com>\n"
Expand Down