Accepting request 984517 from devel:languages:python:jupyter
- Update to 5.3.0 * Fix traitlet name in docstring by @fcollonval in #745 * Re-support multiple-alias key for ArgParseConfigLoader by @azjps in #687 - Drop traitlets-pr739-fixversion.patch OBS-URL: https://build.opensuse.org/request/show/984517 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-traitlets?expand=0&rev=11
This commit is contained in:
commit
0e1f10e1ea
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Wed Jun 22 14:01:30 UTC 2022 - Ben Greiner <code@bnavigator.de>
|
||||||
|
|
||||||
|
- Update to 5.3.0
|
||||||
|
* Fix traitlet name in docstring by @fcollonval in #745
|
||||||
|
* Re-support multiple-alias key for ArgParseConfigLoader by
|
||||||
|
@azjps in #687
|
||||||
|
- Drop traitlets-pr739-fixversion.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Jun 5 16:53:54 UTC 2022 - Ben Greiner <code@bnavigator.de>
|
Sun Jun 5 16:53:54 UTC 2022 - Ben Greiner <code@bnavigator.de>
|
||||||
|
|
||||||
|
@ -17,14 +17,12 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: python-traitlets
|
Name: python-traitlets
|
||||||
Version: 5.2.2
|
Version: 5.3.0
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Traitlets Python configuration system
|
Summary: Traitlets Python configuration system
|
||||||
License: BSD-3-Clause
|
License: BSD-3-Clause
|
||||||
URL: https://github.com/ipython/traitlets
|
URL: https://github.com/ipython/traitlets
|
||||||
Source: https://files.pythonhosted.org/packages/source/t/traitlets/traitlets-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/t/traitlets/traitlets-%{version}.tar.gz
|
||||||
# PATCH-FIX-UPSTREAM traitlets-pr739-fixversion.patch -- gh#ipython/traitlets#739
|
|
||||||
Patch1: https://github.com/ipython/traitlets/pull/739.patch#/traitlets-pr739-fixversion.patch
|
|
||||||
BuildRequires: %{python_module base >= 3.7}
|
BuildRequires: %{python_module base >= 3.7}
|
||||||
BuildRequires: %{python_module hatchling >= 0.25}
|
BuildRequires: %{python_module hatchling >= 0.25}
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:f72ba7d3b31e7938c122860d70d75a5f0ca34e6f2c7db2c7d2f06d47ae099f27
|
|
||||||
size 136801
|
|
3
traitlets-5.3.0.tar.gz
Normal file
3
traitlets-5.3.0.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:0bb9f1f9f017aa8ec187d8b1b2a7a6626a2a1d877116baba52a129bfa124f8e2
|
||||||
|
size 136916
|
@ -1,42 +0,0 @@
|
|||||||
From 69de82b56bed9675c1acda293b5cdb4b1c1dcc7a Mon Sep 17 00:00:00 2001
|
|
||||||
From: Joffrey Bienvenu <joffreybvn@gmail.com>
|
|
||||||
Date: Tue, 31 May 2022 22:22:32 +0200
|
|
||||||
Subject: [PATCH 1/2] Fix package version
|
|
||||||
|
|
||||||
---
|
|
||||||
traitlets/_version.py | 2 +-
|
|
||||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
||||||
|
|
||||||
diff --git a/traitlets/_version.py b/traitlets/_version.py
|
|
||||||
index ecff6d1d..a1b6b2c6 100644
|
|
||||||
--- a/traitlets/_version.py
|
|
||||||
+++ b/traitlets/_version.py
|
|
||||||
@@ -1,5 +1,5 @@
|
|
||||||
version_info = (5, 2, 2, "final")
|
|
||||||
-__version__ = "5.2.2"
|
|
||||||
+__version__ = "5.2.2.final"
|
|
||||||
|
|
||||||
# unlike `.dev`, alpha, beta and rc _must not_ have dots,
|
|
||||||
# or the wheel and tgz won't look to pip like the same version.
|
|
||||||
|
|
||||||
From ad10c659385a59c5d015ecae123b9b7a31a108cf Mon Sep 17 00:00:00 2001
|
|
||||||
From: Joffrey Bienvenu <joffreybvn@gmail.com>
|
|
||||||
Date: Tue, 31 May 2022 22:57:03 +0200
|
|
||||||
Subject: [PATCH 2/2] Remove the 'final' keyword in version
|
|
||||||
|
|
||||||
---
|
|
||||||
traitlets/_version.py | 4 ++--
|
|
||||||
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/traitlets/_version.py b/traitlets/_version.py
|
|
||||||
index a1b6b2c6..f75993c7 100644
|
|
||||||
--- a/traitlets/_version.py
|
|
||||||
+++ b/traitlets/_version.py
|
|
||||||
@@ -1,5 +1,5 @@
|
|
||||||
-version_info = (5, 2, 2, "final")
|
|
||||||
-__version__ = "5.2.2.final"
|
|
||||||
+version_info = (5, 2, 2)
|
|
||||||
+__version__ = "5.2.2"
|
|
||||||
|
|
||||||
# unlike `.dev`, alpha, beta and rc _must not_ have dots,
|
|
||||||
# or the wheel and tgz won't look to pip like the same version.
|
|
Loading…
x
Reference in New Issue
Block a user