#17 F29: Update to 40.8.0
Merged 5 years ago by churchyard. Opened 5 years ago by churchyard.

file modified
+5
@@ -92,3 +92,8 @@ 

  /setuptools-39.2.0.zip

  /setuptools-40.4.1.zip

  /setuptools-40.4.3.zip

+ /setuptools-40.7.0.zip

+ /setuptools-40.7.1.zip

+ /setuptools-40.7.2.zip

+ /setuptools-40.7.3.zip

+ /setuptools-40.8.0.zip

file modified
+25 -7
@@ -18,7 +18,7 @@ 

  

  Name:           python-setuptools

  # When updating, update the bundled libraries versions bellow!

- Version:        40.4.3

+ Version:        40.8.0

  Release:        1%{?dist}

  Summary:        Easily build and distribute Python packages

  # setuptools is MIT
@@ -45,6 +45,7 @@ 

  BuildRequires:  python2-wheel

  %endif # without bootstrap

  %if %{with tests}

+ BuildRequires:  python2-futures

  BuildRequires:  python2-pip

  BuildRequires:  python2-pytest

  BuildRequires:  python2-mock
@@ -67,12 +68,6 @@ 

  BuildRequires:  python3-wheel

  %endif # without bootstrap

  

- # We're now back to setuptools as the package.

- # Keep the python-distribute name active for a few releases.  Eventually we'll

- # want to get rid of the Provides and just keep the Obsoletes

- Provides: python-distribute = %{version}-%{release}

- Obsoletes: python-distribute < 0.6.36-2

- 

  %description

  Setuptools is a collection of enhancements to the Python distutils that allow

  you to more easily build and distribute Python packages, especially ones that
@@ -258,6 +253,29 @@ 

  

  

  %changelog

+ * Tue Feb 05 2019 Miro Hrončok <mhroncok@redhat.com>

+ - Update to 40.8.0 (#1672756)

+ - https://github.com/pypa/setuptools/blob/v40.8.0/CHANGES.rst

+ 

+ * Sun Feb 03 2019 Miro Hrončok <mhroncok@redhat.com> - 40.7.3-1

+ - Hotfix update to 40.7.3 (#1672084)

+ - https://github.com/pypa/setuptools/blob/v40.7.3/CHANGES.rst

+ 

+ * Sat Feb 02 2019 Miro Hrončok <mhroncok@redhat.com> - 40.7.2-1

+ - Hotfix update to 40.7.2 (#1671608)

+ - https://github.com/pypa/setuptools/blob/v40.7.2/CHANGES.rst

+ 

+ * Sat Feb 02 2019 Fedora Release Engineering <releng@fedoraproject.org> - 40.7.1-2

+ - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild

+ 

+ * Tue Jan 29 2019 Miro Hrončok <mhroncok@redhat.com> - 40.7.1-1

+ - Hotfix update to 40.7.1 (#1670243)

+ - https://github.com/pypa/setuptools/blob/v40.7.1/CHANGES.rst

+ 

+ * Mon Jan 28 2019 Miro Hrončok <mhroncok@redhat.com> - 40.7.0-1

+ - Update to 40.7.0 (#1669876)

+ - https://github.com/pypa/setuptools/blob/v40.7.0/CHANGES.rst

+ 

  * Mon Sep 24 2018 Miro Hrončok <mhroncok@redhat.com> - 40.4.3-1

  - Update to 40.4.3 to fix dire DeprecationWarnings (#1627071)

  - List vendored libraries

file modified
+1 -1
@@ -1,1 +1,1 @@ 

- SHA512 (setuptools-40.4.3.zip) = ff4c0bb4a238a8788c533a8f22851e6b59b258c3096fba68a09e7450baf1ee47f47f86bfcd7339133b0445ec6b61fc7f0c08d7d6c4d2b231c29b724aa83d5998

+ SHA512 (setuptools-40.8.0.zip) = f14976a76bff74b7494d44fcfffa511de0d142b4d308fcbf87b34c31c51491102e152acc11a383c5f6b693d1b18eb119c5186ca23deb12b2bbf186794b062868

file modified
+8 -1
@@ -20,6 +20,9 @@ 

      - smoke37:

          dir: python/smoke

          run: VERSION=3.7 ./venv.sh

+     - smoke38:

+         dir: python/smoke

+         run: VERSION=3.8 ./venv.sh

      - smoke26:

          dir: python/smoke

          run: VERSION=2.6 METHOD=virtualenv TOX=false ./venv.sh
@@ -38,15 +41,19 @@ 

      - smoke37_virtualenv:

          dir: python/smoke

          run: VERSION=3.7 METHOD=virtualenv ./venv.sh

+     - smoke38_virtualenv:

+         dir: python/smoke

+         run: VERSION=3.8 METHOD=virtualenv ./venv.sh

      required_packages:

      - gcc

-     - /usr/bin/virtualenv

+     - virtualenv

      - python26

      - python27

      - python34

      - python35

      - python36

      - python37

+     - python38

      - python2-devel

      - python3-devel

      - python3-tox

To fix https://bugzilla.redhat.com/show_bug.cgi?id=1679630

Please, review the changelog carefully. We don't want to break anything.

I've went over the changelog, and nothing breaking stood out to me, but I did not have time to read each individual change.

I'm going to workaround the CI issue to get some CI assurance and if it passes, I'll merge and build.

1 new commit added

  • Fedora CI: Workaround for fedora-ci/general #31
5 years ago

1 new commit added

  • Fedora CI: Add Python 3.8
5 years ago

Pull-Request has been merged by churchyard

5 years ago

I did some basic testing and it looks good.