#1 Add support for python 3.8 through 0.14 pre-release
Closed 4 years ago by junghans. Opened 4 years ago by junghans.
rpms/ junghans/python-joblib python3.8  into  master

file modified
+1
@@ -13,3 +13,4 @@ 

  /joblib-0.12.5.tar.gz

  /joblib-0.13.0.tar.gz

  /joblib-0.13.2.tar.gz

+ /joblib-591a8e683f5a4a4e7ce4bb382024234315abc505.tar.gz

file modified
+17 -2
@@ -1,3 +1,7 @@ 

+ %global git 1

+ %global commit 591a8e683f5a4a4e7ce4bb382024234315abc505

+ %global shortcommit %(c=%{commit}; echo ${c:0:7})

+ 

  %global srcname joblib

  

  %global common_description						\
@@ -9,14 +13,18 @@ 

   * logging and tracing of the execution

  

  Name:           python-%{srcname}

- Version:        0.13.2

- Release:        4%{?dist}

+ Version:        0.14

+ Release:        0.1.190910git%{shortcommit}%{?dist}

  Summary:        Lightweight pipelining: using Python functions as pipeline jobs

  

  License:        BSD

  URL:            https://joblib.readthedocs.io

+ %if %{git}

+ Source0:        https://github.com/%{srcname}/%{srcname}/archive/%{commit}/%{srcname}-%{commit}.tar.gz

+ %else

  Source0:        %{pypi_source}

  Patch0:         joblib-unbundle-cloudpickle.patch

+ %endif

  

  BuildArch:      noarch

  
@@ -41,7 +49,11 @@ 

  %description -n python3-%{srcname} %{common_description}

  

  %prep

+ %if %{git}

+ %autosetup -n %{srcname}-%{commit} -p1

+ %else

  %autosetup -n %{srcname}-%{version} -p1

+ %endif

  

  %build

  %py3_build
@@ -63,6 +75,9 @@ 

  %{python3_sitelib}/%{srcname}/

  

  %changelog

+ * Tue Sep 10 2019 Christoph Junghans <junghans@votca.org> - 0.14-0.1.190910git591a8e6

+ - Add support for python 3.8 through 0.14 pre-release

+ 

  * Mon Aug 19 2019 Miro HronĨok <mhroncok@redhat.com> - 0.13.2-4

  - Rebuilt for Python 3.8

  

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

- SHA512 (joblib-0.13.2.tar.gz) = d29c794f6d993bea225af39369228e4950ec970abeb6c82ff69c9db553ce381216258ba96419f7f0d49d0c6ae966a1de9cae8266b14a7416e1aad16e81b1a8a2

+ SHA512 (joblib-591a8e683f5a4a4e7ce4bb382024234315abc505.tar.gz) = 114de11ba7d8816274fdba03479d8fbb79abd21df8d4742e576e22c602979231f74e4b9a45907b1d77bd26fa06655eb272286f77b64e7bb36214f9641af76703

Metadata Update from @sergiopr:
- Request assigned

4 years ago

It seems that somebody else has uploaded a prerelease. You still can rebase and merge your changes. At least, your git conditional is very nice to have in the spec

Meh, git conditionals are ugly.

Pull-Request has been closed by junghans

4 years ago

Why not to just backport patch?

That was done in master already.