Skip to content

Commit d335b9a

Browse files
committed
pypi-setuptools: Autospec creation for update from version 67.2.0 to version 67.3.1
Anderson Bravalheri (34): Replace pkg_resources in version.py Extract normalization functions from editable_wheel and dist_info into own module Prefer setuptools._normalization instead of pkg_resources in develop.py Prefer setuptools._normalization and importlib_metadata instead of pkg_resources in dist.py Prefer setuptools._normalization instead of pkg_resources in egg_info.py Prefer packaging instead of pkg_resources in egg_info.py Prefer packaging instead of pkg_resources in dist.py for markers Implement alternative for pkg_resources.Distribution.egg_name in egg_info.py Prefer alternative from egg_info.py to pkg_resources.Distribution.egg_name Prefer packaging instead for pkg_resources for version in wheel.py Modify _reqs.py to prefer prefer packaging instead of pkg_resources Centralize usage of pkg_resources from dist.py to installer.py Delay imports of pkg_resources in install_scripts.py Replace/move _normalization.path with/to _path.samepath and _path.normpath Fix dist-info naming discrepancy in relation to bdist_wheel Revert to using normalized paths in develop to fix test errors Allow None to be passed to egg_basename Remove editable_wheel "catch all" exception Update note about SETUPTOOLS_ENABLE_FEATURES Use warning in editable since pip hides PEP 678 notes Clarify 'editable_wheel' and 'dist_info' are internal commands only Improve warning message Add test for debugging tips Add news fragment Add DeprecationWarning to `pkg_resources.declare_namespace` Add news fragment Add information on why namespace_packages are deprecated Add links explaining deprecations Add news items for 3792 Small rewording for user-facing text/docs Bump version: 67.2.0 → 67.3.0 Fix error when integrating with pip Add news fragment Bump version: 67.3.0 → 67.3.1 Jason R. Coombs (7): ALLOW_UNICODE no longer needed on Python 3. As a result, ELLIPSES is also now enabled by default. Enable default encoding warning where available. See PEP 597. Suppress EncodingWarning in pytest_black. Workaround for shopkeep/pytest-black#67. Exempt warning. Workaround for realpython/pytest-mypy#152 Add #upstream markers for filtered warnings. Add filter for platform module (ref python/cpython#100750). Remove reference to EncodingWarning as it doesn't exist on some Pythons. Do not error on EncodingWarning. Instead emit them like usual. Ref #3810
1 parent 58e9584 commit d335b9a

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
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-setuptools
2-
URL = https://files.pythonhosted.org/packages/5f/36/7374297692bb9dbd7569a0f84887c7e5e314c41d5d9518cb76fbb130620d/setuptools-67.2.0.tar.gz
2+
URL = https://files.pythonhosted.org/packages/9f/48/c22cae4aa8f5ed6a64fd9d5be995b740230abab7affa31176af34a6e56ce/setuptools-67.3.1.tar.gz
33
ARCHIVES =
44

55
include ../common/Makefile.common

options.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = pypi-setuptools
3-
url = https://files.pythonhosted.org/packages/5f/36/7374297692bb9dbd7569a0f84887c7e5e314c41d5d9518cb76fbb130620d/setuptools-67.2.0.tar.gz
3+
url = https://files.pythonhosted.org/packages/9f/48/c22cae4aa8f5ed6a64fd9d5be995b740230abab7affa31176af34a6e56ce/setuptools-67.3.1.tar.gz
44
archives =
55
giturl = https://github.com/pypa/setuptools.git
66
domain =

pypi-setuptools.spec

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
# Generated by: autospec.py
44
#
55
Name : pypi-setuptools
6-
Version : 67.2.0
7-
Release : 291
8-
URL : https://files.pythonhosted.org/packages/5f/36/7374297692bb9dbd7569a0f84887c7e5e314c41d5d9518cb76fbb130620d/setuptools-67.2.0.tar.gz
9-
Source0 : https://files.pythonhosted.org/packages/5f/36/7374297692bb9dbd7569a0f84887c7e5e314c41d5d9518cb76fbb130620d/setuptools-67.2.0.tar.gz
6+
Version : 67.3.1
7+
Release : 292
8+
URL : https://files.pythonhosted.org/packages/9f/48/c22cae4aa8f5ed6a64fd9d5be995b740230abab7affa31176af34a6e56ce/setuptools-67.3.1.tar.gz
9+
Source0 : https://files.pythonhosted.org/packages/9f/48/c22cae4aa8f5ed6a64fd9d5be995b740230abab7affa31176af34a6e56ce/setuptools-67.3.1.tar.gz
1010
Summary : Easily download, build, install, upgrade, and uninstall Python packages
1111
Group : Development/Tools
1212
License : MIT Python-2.0 ZPL-2.0
@@ -60,18 +60,18 @@ python3 components for the pypi-setuptools package.
6060

6161

6262
%prep
63-
%setup -q -n setuptools-67.2.0
64-
cd %{_builddir}/setuptools-67.2.0
63+
%setup -q -n setuptools-67.3.1
64+
cd %{_builddir}/setuptools-67.3.1
6565
pushd ..
66-
cp -a setuptools-67.2.0 buildavx2
66+
cp -a setuptools-67.3.1 buildavx2
6767
popd
6868

6969
%build
7070
export http_proxy=http://127.0.0.1:9/
7171
export https_proxy=http://127.0.0.1:9/
7272
export no_proxy=localhost,127.0.0.1,0.0.0.0
7373
export LANG=C.UTF-8
74-
export SOURCE_DATE_EPOCH=1675785782
74+
export SOURCE_DATE_EPOCH=1676392907
7575
export GCC_IGNORE_WERROR=1
7676
export AR=gcc-ar
7777
export RANLIB=gcc-ranlib

release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
291
1+
292

upstream

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
8b361d53a083c8c44151561c9d71eca7a41e1aca/setuptools-67.2.0.tar.gz
1+
b37e22f777096bdb7f948e784ff5a561c012d9af/setuptools-67.3.1.tar.gz

versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
67.2.0
1+
67.3.1

0 commit comments

Comments
 (0)