Skip to content

Commit 93bc4ee

Browse files
committed
pypi-setuptools: Autospec creation for update from version 65.4.0 to version 65.4.1
Jason R. Coombs (33): Use path.Path for changing the cwd temporarily. Remove needless assert renderings. Any decent test runner will provide this detail. Remove reference to duplicate issue. Refactor _is_python_source_dir using pathlib. Use 'samefile' to check for same file, because they may not be the same path. Fixes #180. Split test into two tests. Use pathlib Remove special case for TestCore.write_setup. Replace TESTFN with temp_file fixture. Remove 'cleanup_testfn', unused. Remove distracting comments In test_sysconfig, prefer fixtures to TESTFN. Remove cleanup_testfn, no longer used. Replace TESTFN with fixture. Remove empty logic branch. Use path.Path for changing the cwd temporarily. Remove reliance on TESTFN in test_dist Remove TESTFN from py38compat, no longer needed. xfail srcdir_simple on Windows Remove reliance on os_helper in test_build_ext Remove reliance on change_cwd Add compatibility shim for subprocess on Python 3.7 on Windows Extract _save_cwd for saving the current working directory. Prefer a temp_cwd fixture to reduce indentation. Remove reliance on create_empty_file Add PyPy to the test matrix on Linux. Fixes jaraco/skeleton#63. When rendering docs, preserve the syntax for defaults. Fixes jaraco/path#197. Add test for PermissionError. Ref pypa/distutils#181. Use os.path.isfile for checking if path.is_file, suppresses exceptions. Fixes pypa/distutils#181. Update changelog Use pathlib to open the file Update changelog Bump version: 65.4.0 → 65.4.1 Julien Palard (1): expand: Give bytes to ast.parse to let it discover encoding cookie. Matthias Koeppe (3): .github/workflows/ci-sage.yml: Use reusable workflow https://github.com/sagemath/sage/blob/develop/.github/workflows/docker.yml .github/workflows/ci-sage.yml: Run on pull_request when the yml file is modified .github/workflows/ci-sage.yml: Use reusable workflow from https://trac.sagemath.org/ticket/33288
1 parent ac4a375 commit 93bc4ee

File tree

6 files changed

+13
-13
lines changed

6 files changed

+13
-13
lines changed

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PKG_NAME := pypi-setuptools
2-
URL = https://files.pythonhosted.org/packages/4c/61/86c94ae2cccb05749abfb1b2961125d40368c8f03ac59275550c45e634f1/setuptools-65.4.0.tar.gz
2+
URL = https://files.pythonhosted.org/packages/03/c9/7b050ea4cc4144d0328f15e0b43c839e759c6c639370a3b932ecf4c6358f/setuptools-65.4.1.tar.gz
33
ARCHIVES =
44

55
include ../common/Makefile.common

options.conf

+1-1
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/4c/61/86c94ae2cccb05749abfb1b2961125d40368c8f03ac59275550c45e634f1/setuptools-65.4.0.tar.gz
3+
url = https://files.pythonhosted.org/packages/03/c9/7b050ea4cc4144d0328f15e0b43c839e759c6c639370a3b932ecf4c6358f/setuptools-65.4.1.tar.gz
44
archives =
55
giturl = https://github.com/pypa/setuptools.git
66
domain =

pypi-setuptools.spec

+8-8
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
# Generated by: autospec.py
44
#
55
Name : pypi-setuptools
6-
Version : 65.4.0
7-
Release : 275
8-
URL : https://files.pythonhosted.org/packages/4c/61/86c94ae2cccb05749abfb1b2961125d40368c8f03ac59275550c45e634f1/setuptools-65.4.0.tar.gz
9-
Source0 : https://files.pythonhosted.org/packages/4c/61/86c94ae2cccb05749abfb1b2961125d40368c8f03ac59275550c45e634f1/setuptools-65.4.0.tar.gz
6+
Version : 65.4.1
7+
Release : 276
8+
URL : https://files.pythonhosted.org/packages/03/c9/7b050ea4cc4144d0328f15e0b43c839e759c6c639370a3b932ecf4c6358f/setuptools-65.4.1.tar.gz
9+
Source0 : https://files.pythonhosted.org/packages/03/c9/7b050ea4cc4144d0328f15e0b43c839e759c6c639370a3b932ecf4c6358f/setuptools-65.4.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
@@ -57,18 +57,18 @@ python3 components for the pypi-setuptools package.
5757

5858

5959
%prep
60-
%setup -q -n setuptools-65.4.0
61-
cd %{_builddir}/setuptools-65.4.0
60+
%setup -q -n setuptools-65.4.1
61+
cd %{_builddir}/setuptools-65.4.1
6262
pushd ..
63-
cp -a setuptools-65.4.0 buildavx2
63+
cp -a setuptools-65.4.1 buildavx2
6464
popd
6565

6666
%build
6767
export http_proxy=http://127.0.0.1:9/
6868
export https_proxy=http://127.0.0.1:9/
6969
export no_proxy=localhost,127.0.0.1,0.0.0.0
7070
export LANG=C.UTF-8
71-
export SOURCE_DATE_EPOCH=1664206680
71+
export SOURCE_DATE_EPOCH=1664556657
7272
export GCC_IGNORE_WERROR=1
7373
export AR=gcc-ar
7474
export RANLIB=gcc-ranlib

release

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
275
1+
276

upstream

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
e5f9797d85db9bb2ce39b401c1b7aca38de616b5/setuptools-65.4.0.tar.gz
1+
519a11f22479893dd7216c1332e4340e32c55eaa/setuptools-65.4.1.tar.gz

versions

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
65.4.0
1+
65.4.1

0 commit comments

Comments
 (0)