Skip to content
This repository was archived by the owner on Oct 25, 2022. It is now read-only.

Commit c1ac53f

Browse files
committed
[update to 46.0.0] Add info message when authentication error encountered processing package index.
Andrew Taylor (1): Add info message when authentication error encountered processing package index. Bastian Venthur (5): Deprecated Eggsecutable Scripts Put deprecation in section rather then removing it (updated changelog as well) Added test for DeprecationWarning warning -> deprecated Removed unused context.quiet Dan Rose (1): Remove sys.modules hack Jason R. Coombs (29): Error on warnings. Fixes #1823. Move the error directive to the top, as it's more permanent. Add changelog entry normalize indentation Remove the Features feature. Fixes #65. Update changelog. Add azure pipelines from jaraco/skeleton Bootstrap the environment in tox, allowing simple 'tox' to run tests and simplifying all of the pipelines. Update deprecation version and include extension on changelog file. Avoid installing setuptools 45 on Python 2. Pin virtualenv to <20 as workaround for #1998. Suppress failures due to unfortunate combination of issues. Ref #2000. Copy docs requirements to a separate file due to RTD constraints. Fixes #2001. Ref readthedocs/readthedocs.org#6662 Bump version: 45.2.0 → 45.3.0 Also remove mysterious hack from pkg_resources.extern Try building docs with python3. Ref #1992. Reword UserWarning for insecure extraction path so that the message can be keyed for ignoring it. Ref #1899. Suppress UserWarning in pkg_resources. Try installing pip Use pep517 to avoid bb://pypa/distlib#136. Emit the Python version Add a file 'runtime.txt' to let Netlify know to use that env. Fixes #1992. Docs land in build/html Add a note about runtime.txt Suppress RuntimeWarning from sandbox module on Python 2 Suppress Windows bytes API warning until it can be fixed. Ref #2016. Suppress another warning Get both UnicodeWarnings Bump version: 45.3.0 → 46.0.0 Miro Hrončok (1): Include pkg_resources test data in sdist Ye-hyoung Kang (2): Fix broken link to Python docs Create 2011.doc.rst mayeut (1): Use CPython 3.8.0 mechanism to find msvc 14+
1 parent acc5ca4 commit c1ac53f

File tree

6 files changed

+15
-14
lines changed

6 files changed

+15
-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 := openstack-setuptools
2-
URL = https://files.pythonhosted.org/packages/68/75/d1d7b7340b9eb6e0388bf95729e63c410b381eb71fe8875cdfd949d8f9ce/setuptools-45.2.0.zip
2+
URL = https://files.pythonhosted.org/packages/df/ed/bea598a87a8f7e21ac5bbf464102077c7102557c07db9ff4e207bd9f7806/setuptools-46.0.0.zip
33
ARCHIVES =
44

55
include ../common/Makefile.common

openstack-setuptools.spec

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
# Generated by: autospec.py
44
#
55
Name : openstack-setuptools
6-
Version : 45.2.0
7-
Release : 154
8-
URL : https://files.pythonhosted.org/packages/68/75/d1d7b7340b9eb6e0388bf95729e63c410b381eb71fe8875cdfd949d8f9ce/setuptools-45.2.0.zip
9-
Source0 : https://files.pythonhosted.org/packages/68/75/d1d7b7340b9eb6e0388bf95729e63c410b381eb71fe8875cdfd949d8f9ce/setuptools-45.2.0.zip
6+
Version : 46.0.0
7+
Release : 155
8+
URL : https://files.pythonhosted.org/packages/df/ed/bea598a87a8f7e21ac5bbf464102077c7102557c07db9ff4e207bd9f7806/setuptools-46.0.0.zip
9+
Source0 : https://files.pythonhosted.org/packages/df/ed/bea598a87a8f7e21ac5bbf464102077c7102557c07db9ff4e207bd9f7806/setuptools-46.0.0.zip
1010
Summary : Easily download, build, install, upgrade, and uninstall Python packages
1111
Group : Development/Tools
1212
License : MIT
@@ -60,15 +60,15 @@ python3 components for the openstack-setuptools package.
6060

6161

6262
%prep
63-
%setup -q -n setuptools-45.2.0
64-
cd %{_builddir}/setuptools-45.2.0
63+
%setup -q -n setuptools-46.0.0
64+
cd %{_builddir}/setuptools-46.0.0
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=1583192824
71+
export SOURCE_DATE_EPOCH=1583768338
7272
# -Werror is for werrorists
7373
export GCC_IGNORE_WERROR=1
7474
export CFLAGS="$CFLAGS -fno-lto "
@@ -78,10 +78,10 @@ export CXXFLAGS="$CXXFLAGS -fno-lto "
7878
python3.6 setup.py build -b py3
7979

8080
%install
81-
export SOURCE_DATE_EPOCH=1583192824
81+
export SOURCE_DATE_EPOCH=1583768338
8282
rm -rf %{buildroot}
8383
mkdir -p %{buildroot}/usr/share/package-licenses/openstack-setuptools
84-
cp %{_builddir}/setuptools-45.2.0/LICENSE %{buildroot}/usr/share/package-licenses/openstack-setuptools/a5234543d56e03c950c0080826b53a0cb97671af
84+
cp %{_builddir}/setuptools-46.0.0/LICENSE %{buildroot}/usr/share/package-licenses/openstack-setuptools/a5234543d56e03c950c0080826b53a0cb97671af
8585
python3.6 -tt setup.py build -b py3 install --root=%{buildroot} --force
8686
echo ----[ mark ]----
8787
cat %{buildroot}/usr/lib/python3*/site-packages/*/requires.txt || :

options.conf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
[package]
22
name = openstack-setuptools
3-
url = https://files.pythonhosted.org/packages/68/75/d1d7b7340b9eb6e0388bf95729e63c410b381eb71fe8875cdfd949d8f9ce/setuptools-45.2.0.zip
3+
url = https://files.pythonhosted.org/packages/df/ed/bea598a87a8f7e21ac5bbf464102077c7102557c07db9ff4e207bd9f7806/setuptools-46.0.0.zip
44
archives =
55
giturl = https://github.com/pypa/setuptools.git
66
domain =
7+
alias =
78

89
[autospec]
910
# build 32 bit libraries

release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
154
1+
155

upstream

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7cef5bf90ea21eed7cad3ca19f4786286ca35d0a/setuptools-45.2.0.zip
1+
7698a119bbfd02602f037d502763400649ce7394/setuptools-46.0.0.zip

versions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
45.2.0
1+
46.0.0

0 commit comments

Comments
 (0)