#8 Update to 0.12.2
Merged 2 years ago by lbalhar. Opened 2 years ago by lbalhar.
rpms/ lbalhar/python-jupyter-packaging rawhide  into  rawhide

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

  /jupyter_packaging-0.11.1.tar.gz

  /jupyter_packaging-0.12.0.tar.gz

  /jupyter_packaging-0.12.1.tar.gz

+ /jupyter_packaging-0.12.2.tar.gz

file removed
-31
@@ -1,31 +0,0 @@ 

- From 8e79363e0e0b1572c5ed723a79834317ace5461f Mon Sep 17 00:00:00 2001

- From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= <miro@hroncok.cz>

- Date: Thu, 16 Jun 2022 22:14:22 +0200

- Subject: [PATCH] Replace deprecated pipes.quote with shlex.quote

- 

-     E   DeprecationWarning: 'pipes' is deprecated and slated for removal in Python 3.13

- ---

-  jupyter_packaging/setupbase.py | 3 +--

-  1 file changed, 1 insertion(+), 2 deletions(-)

- 

- diff --git a/jupyter_packaging/setupbase.py b/jupyter_packaging/setupbase.py

- index aa2547b..d7cd96d 100644

- --- a/jupyter_packaging/setupbase.py

- +++ b/jupyter_packaging/setupbase.py

- @@ -12,7 +12,6 @@

-  import io

-  import logging

-  import os

- -import pipes

-  import re

-  import shlex

-  import subprocess

- @@ -55,7 +54,7 @@

-  else:

-  

-      def list2cmdline(cmd_list):

- -        return " ".join(map(pipes.quote, cmd_list))

- +        return " ".join(map(shlex.quote, cmd_list))

-  

-  

-  __version__ = "0.12.1"

@@ -1,17 +1,13 @@ 

  %global pypi_name jupyter_packaging

  

  Name:           python-jupyter-packaging

- Version:        0.12.1

- Release:        2%{?dist}

+ Version:        0.12.2

+ Release:        1%{?dist}

  Summary:        Tools to help build and install Jupyter Python packages

  

  License:        BSD

  URL:            https://github.com/jupyter/jupyter-packaging

  Source0:        %{pypi_source}

- 

- # Replace deprecated pipes.quote with shlex.quote

- Patch:          https://github.com/jupyter/jupyter-packaging/pull/153.patch

- 

  BuildArch:      noarch

  

  %global _description %{expand:
@@ -57,6 +53,10 @@ 

  %doc README.md

  

  %changelog

+ * Mon Jun 20 2022 Lumír Balhar <lbalhar@redhat.com> - 0.12.2-1

+ - Update to 0.12.2

+ Resolves: rhbz#2099315

+ 

  * Tue Jun 14 2022 Python Maint <python-maint@redhat.com> - 0.12.1-2

  - Rebuilt for Python 3.11

  

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

- SHA512 (jupyter_packaging-0.12.1.tar.gz) = d1216c6b4b65f7e2706bf28d19110e3f8bc6c01d5821d3c3b6bdbbfeb6ebda40f893ef596bf67d87d157e9db436acc751640ea518880063eb387dda8cd78ef15

+ SHA512 (jupyter_packaging-0.12.2.tar.gz) = f4167c7beb3188d2e4b0fa8601fb8cdede8b20dc8c16e0bccbcf9e317e75e24ea1469a9d904bb35b2d81dec351caf49526ef35e5d91460a099a8e4ed6974e1b1

no initial comment

Could you please git rm 153.patch ?

rebased onto af30b29

2 years ago

Not sure why CI is not starting here but I did a control rebuild and:
- notebook built fine
- octave-kernel failed for the same reason as it did in Koschei

Not sure why CI is not starting

I've reported this in https://pagure.io/fedora-ci/general/issue/345 -- please always report CI not starting, @mvadkert asked us to do that.

@churchyard yeah, we need to extend those steps for Zuul. With it, we first need to verify it is enabled in Zuul. Unfortunately, Zuul cannot handle discovering repos by itself, it needs that explicit config AFAIRR.

Well, Zuul is not enabled here. I was thinking Jenkins scratch build + testing farm.

Pull-Request has been merged by lbalhar

2 years ago