Skip to content
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

humanize v4.7.0 #49

Merged
merged 4 commits into from
Jun 28, 2023
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
4 changes: 2 additions & 2 deletions .scripts/build_steps.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion conda-forge.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
bot:
automerge: false
inspection: update-grayskull
conda_forge_output_validation: true
github:
branch_name: main
Expand Down
28 changes: 14 additions & 14 deletions recipe/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,35 +1,35 @@
{% set version = "4.6.0" %}
{% set name = "humanize" %}
{% set version = "4.7.0" %}

package:
name: humanize
name: {{ name|lower }}
version: {{ version }}

source:
url: https://pypi.io/packages/source/h/humanize/humanize-{{ version }}.tar.gz
sha256: 5f1f22bc65911eb1a6ffe7659bd6598e33dcfeeb904eb16ee1e705a09bf75916
url: https://pypi.io/packages/source/{{ name[0] }}/{{ name }}/humanize-{{ version }}.tar.gz
sha256: 7ca0e43e870981fa684acb5b062deb307218193bca1a01f2b2676479df849b3a

build:
number: 0
noarch: python
script: {{ PYTHON }} -m pip install . -vv
number: 0

requirements:
host:
- python >=3.7
- pip
- hatchling
- python >=3.8
- hatch-vcs
- hatchling
- pip
run:
- python >=3.7
- importlib-metadata
- python >=3.8

test:
requires:
- pip
commands:
- pip check
imports:
- humanize
commands:
- pip check
requires:
- pip

about:
home: https://github.com/python-humanize/humanize
Expand Down