Skip to content

Commit 269d4be

Browse files
committed
pypi-inflect: Autospec creation for update from version 7.3.1 to version 7.4.0
Anderson Bravalheri (1): Add `--fix` flag to ruff pre-commit hook for automatic suggestion of fixes (jaraco/skeleton#140) Avasam (2): Add Protocols, remove @overload, from `.coveragerc` `exclude_also` (jaraco/skeleton#135) Loosen restrictions on mypy (jaraco/skeleton#136) Dimitri Papadopoulos Orfanos (3): "preserve" does not require preview any more (jaraco/skeleton#133) Enforce ruff/Perflint rule PERF401 (jaraco/skeleton#132) Update to the latest ruff version (jaraco/skeleton#137) Jason R. Coombs (14): Exclude pytest-ruff (and thus ruff), which cannot build on cygwin. Re-enable preview, this time not for one specific feature, but for all features in preview. Split the test dependencies into four classes (test, cover, type, check). (jaraco/skeleton#139) Add upstream and local sections for 'type' extra, since many projects will have 'types-*' dependencies. 🧎‍♀️ Genuflect to the types. Move comment Construct the _gend_sing dictionary statically. Disable mypy for now. Ref jaraco/skeleton#143 Move overload-overlap disablement to its own line for easier diffs and simpler relevant comments. Add a degenerate nitpick_ignore for downstream consumers. Add a 'local' comment to delineate where the skeleton ends and the downstream begins. Add support for linking usernames. Include the trailing slash in disable_error_code(overload-overlap), also required for clean diffs. Add news fragment. Finalize Josh Stephenson (1): Clarify that inflect is for English. Mitchel Humpherys (2): Handle a single apostrophe more gracefully Add a test for a single-character apostrophe string
1 parent 0d29214 commit 269d4be

File tree

5 files changed

+16
-14
lines changed

5 files changed

+16
-14
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PKG_NAME := pypi-inflect
2-
URL = https://files.pythonhosted.org/packages/c1/89/adc704e60183b208836034a7382c564cb3c54254983fb3b3d1d8dcdd0c51/inflect-7.3.1.tar.gz
2+
URL = https://files.pythonhosted.org/packages/e1/dc/02614acece4d578e709c606594c989cfd9f15cf6401444e5603e60df9b26/inflect-7.4.0.tar.gz
33
ARCHIVES =
44

55
include ../common/Makefile.common

options.conf

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = pypi-inflect
3-
url = https://files.pythonhosted.org/packages/c1/89/adc704e60183b208836034a7382c564cb3c54254983fb3b3d1d8dcdd0c51/inflect-7.3.1.tar.gz
3+
url = https://files.pythonhosted.org/packages/e1/dc/02614acece4d578e709c606594c989cfd9f15cf6401444e5603e60df9b26/inflect-7.4.0.tar.gz
44
archives =
55
giturl = https://github.com/jaraco/inflect/
66
domain =
@@ -17,6 +17,8 @@ allow_test_failures = false
1717
asneeded = false
1818
# this package is trusted enough to automatically update (used by other tools)
1919
autoupdate = true
20+
# try to use mock short circuit to avoid full rebuilds
21+
avoid_rebuild = false
2022
# extend flags with '-std=gnu++98
2123
broken_c++ = false
2224
# disable parallelization during build

pypi-inflect.spec

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
# This file is auto-generated. DO NOT EDIT
33
# Generated by: autospec.py
44
# Using build pattern: pyproject
5-
# autospec version: v13
6-
# autospec commit: dc0ff31
5+
# autospec version: v18
6+
# autospec commit: f35655a
77
#
88
Name : pypi-inflect
9-
Version : 7.3.1
10-
Release : 30
11-
URL : https://files.pythonhosted.org/packages/c1/89/adc704e60183b208836034a7382c564cb3c54254983fb3b3d1d8dcdd0c51/inflect-7.3.1.tar.gz
12-
Source0 : https://files.pythonhosted.org/packages/c1/89/adc704e60183b208836034a7382c564cb3c54254983fb3b3d1d8dcdd0c51/inflect-7.3.1.tar.gz
9+
Version : 7.4.0
10+
Release : 31
11+
URL : https://files.pythonhosted.org/packages/e1/dc/02614acece4d578e709c606594c989cfd9f15cf6401444e5603e60df9b26/inflect-7.4.0.tar.gz
12+
Source0 : https://files.pythonhosted.org/packages/e1/dc/02614acece4d578e709c606594c989cfd9f15cf6401444e5603e60df9b26/inflect-7.4.0.tar.gz
1313
Summary : Correctly generate plurals, singular nouns, ordinals, indefinite articles
1414
Group : Development/Tools
1515
License : MIT
@@ -62,18 +62,18 @@ python3 components for the pypi-inflect package.
6262

6363

6464
%prep
65-
%setup -q -n inflect-7.3.1
66-
cd %{_builddir}/inflect-7.3.1
65+
%setup -q -n inflect-7.4.0
66+
cd %{_builddir}/inflect-7.4.0
6767
pushd ..
68-
cp -a inflect-7.3.1 buildavx2
68+
cp -a inflect-7.4.0 buildavx2
6969
popd
7070

7171
%build
7272
export http_proxy=http://127.0.0.1:9/
7373
export https_proxy=http://127.0.0.1:9/
7474
export no_proxy=localhost,127.0.0.1,0.0.0.0
7575
export LANG=C.UTF-8
76-
export SOURCE_DATE_EPOCH=1720053900
76+
export SOURCE_DATE_EPOCH=1725716484
7777
export GCC_IGNORE_WERROR=1
7878
export AR=gcc-ar
7979
export RANLIB=gcc-ranlib

release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
30
1+
31

upstream

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
198fde94d0e7dec951130ae73a7366ce7885d71a/inflect-7.3.1.tar.gz
1+
7ff0f9c8f6b8c686c69ff77dccc3140d8cd263f8/inflect-7.4.0.tar.gz

0 commit comments

Comments
 (0)