public inbox for git-commits@fedoraproject.org
help / color / mirror / Atom feed
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
To: git-commits@fedoraproject.org
Subject: [rpms/python-jupyter-kernel-test] epel10: Update to latest version (#2027871)
Date: Sat, 11 Jul 2026 15:45:36 GMT [thread overview]
Message-ID: <178378473669.1.6907195172139460328.rpms-python-jupyter-kernel-test-fc4df60e0a33@fedoraproject.org> (raw)
A new commit has been pushed.
Repo : rpms/python-jupyter-kernel-test
Branch : epel10
Commit : fc4df60e0a33add72bc0af6f7e397ad41a83e175
Author : Elliott Sales de Andrade <quantum.analyst@gmail.com>
Date : 2021-12-01T01:55:31-05:00
Stats : +6/-91 in 5 file(s)
URL : https://src.fedoraproject.org/rpms/python-jupyter-kernel-test/c/fc4df60e0a33add72bc0af6f7e397ad41a83e175?branch=epel10
Log:
Update to latest version (#2027871)
---
diff --git a/.gitignore b/.gitignore
index aa6a607..461e41d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1 +1,2 @@
/jupyter-kernel-test-0.3.tar.gz
+/jupyter_kernel_test-0.4.0.tar.gz
diff --git a/0001-Replace-flit.ini-file-with-pyproject.toml.patch b/0001-Replace-flit.ini-file-with-pyproject.toml.patch
deleted file mode 100644
index 9235612..0000000
--- a/0001-Replace-flit.ini-file-with-pyproject.toml.patch
+++ /dev/null
@@ -1,55 +0,0 @@
-From 85d2e7a4572d8932162088139a702ae545cb3d8b Mon Sep 17 00:00:00 2001
-From: Tomas Hrnciar <thrnciar@redhat.com>
-Date: Fri, 2 Oct 2020 09:47:58 +0200
-Subject: [PATCH] Replace flit.ini file with pyproject.toml
-
----
- flit.ini | 14 --------------
- pyproject.toml | 14 ++++++++++++++
- 2 files changed, 14 insertions(+), 14 deletions(-)
- delete mode 100644 flit.ini
- create mode 100644 pyproject.toml
-
-diff --git a/flit.ini b/flit.ini
-deleted file mode 100644
-index 5c96d24..0000000
---- a/flit.ini
-+++ /dev/null
-@@ -1,14 +0,0 @@
--[metadata]
--module = jupyter_kernel_test
--author = Jupyter Development Team
--author-email = jupyter@googlegroups.com
--home-page = https://github.com/jupyter/jupyter_kernel_test
--description-file = README.rst
--classifiers = License :: OSI Approved :: BSD License
-- Intended Audience :: Developers
-- Programming Language :: Python :: 3
-- Topic :: Software Development :: Testing
--requires-python = >=3.4
--requires = traitlets
-- jupyter_client
-- nose
-diff --git a/pyproject.toml b/pyproject.toml
-new file mode 100644
-index 0000000..7b82de5
---- /dev/null
-+++ b/pyproject.toml
-@@ -0,0 +1,14 @@
-+[build-system]
-+requires = ["flit_core >=2,<4"]
-+build-backend = "flit_core.buildapi"
-+
-+[tool.flit.metadata]
-+module = "jupyter_kernel_test"
-+author = "Jupyter Development Team"
-+author-email = "jupyter@googlegroups.com"
-+home-page = "https://github.com/jupyter/jupyter_kernel_test"
-+description-file = "README.rst"
-+classifiers = ["License :: OSI Approved :: BSD License", "Intended Audience :: Developers", "Programming Language :: Python :: 3", "Topic :: Software Development :: Testing"]
-+requires-python = ">=3.4"
-+requires = ["traitlets", "jupyter_client", "nose"]
-+
---
-2.26.2
-
diff --git a/0b78c2835fad5df3be182ddd5013a73a63c4f81e.patch b/0b78c2835fad5df3be182ddd5013a73a63c4f81e.patch
deleted file mode 100644
index 3a81086..0000000
--- a/0b78c2835fad5df3be182ddd5013a73a63c4f81e.patch
+++ /dev/null
@@ -1,23 +0,0 @@
-From 0b78c2835fad5df3be182ddd5013a73a63c4f81e Mon Sep 17 00:00:00 2001
-From: Thomas Kluyver <thomas@kluyver.me.uk>
-Date: Mon, 2 Jul 2018 22:27:09 +0200
-Subject: [PATCH] Fix test for changed IPython behaviour
-
-Closes gh-42
----
- test_ipykernel.py | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/test_ipykernel.py b/test_ipykernel.py
-index 8abe86a..fe85aff 100644
---- a/test_ipykernel.py
-+++ b/test_ipykernel.py
-@@ -46,7 +46,7 @@ class IPyKernelTests(jkt.KernelTests):
- # these samples should respectively be unambigiously complete statements
- # (which should be executed on <enter>), incomplete statements or code
- # which should be identified as invalid
-- complete_code_samples = ['1', "print('hello, world')", "def f(x):\n return x*2\n\n"]
-+ complete_code_samples = ['1', "print('hello, world')", "def f(x):\n return x*2\n\n\n"]
- incomplete_code_samples = ["print('''hello", "def f(x):\n x*2"]
- invalid_code_samples = ['import = 7q']
-
diff --git a/python-jupyter-kernel-test.spec b/python-jupyter-kernel-test.spec
index c158544..abe646a 100644
--- a/python-jupyter-kernel-test.spec
+++ b/python-jupyter-kernel-test.spec
@@ -2,25 +2,17 @@
%global srcname_ jupyter_kernel_test
Name: python-%{srcname}
-Version: 0.3
+Version: 0.4.0
Release: %autorelease
Summary: Machinery for testing Jupyter kernels via the messaging protocol
License: BSD
URL: https://pypi.python.org/pypi/%{srcname}
-Source0: https://github.com/jupyter/%{srcname_}/archive/%{version}/%{srcname}-%{version}.tar.gz
-
-# https://github.com/jupyter/jupyter_kernel_test/issues/42
-Patch0: https://github.com/jupyter/jupyter_kernel_test/commit/0b78c2835fad5df3be182ddd5013a73a63c4f81e.patch
-# flit 3.0.0 expects pyproject.toml file instead of flit.ini.
-# When a new version of jupyter_kernel_test is released
-# this patch can be removed.
-Patch1: 0001-Replace-flit.ini-file-with-pyproject.toml.patch
+Source0: %pypi_source %{srcname_}
BuildArch: noarch
BuildRequires: python3-devel
-BuildRequires: python3-ipykernel
%description
jupyter_kernel_test is a tool for testing Jupyter kernels. It tests kernels for
@@ -36,7 +28,7 @@ successful code execution and conformance with the Jupyter Messaging Protocol
(currently 5.0).
%generate_buildrequires
-%pyproject_buildrequires -r
+%pyproject_buildrequires -r -x test
%prep
%autosetup -n %{srcname_}-%{version} -p1
@@ -53,7 +45,7 @@ PYTHONPATH="%{buildroot}%{python3_sitelib}" \
%{python3} test_ipykernel.py
%files -n python3-%{srcname} -f %{pyproject_files}
-%license COPYING.md
+%license LICENSE
%doc README.rst
%changelog
diff --git a/sources b/sources
index 650202f..ce5e866 100644
--- a/sources
+++ b/sources
@@ -1 +1 @@
-SHA512 (jupyter-kernel-test-0.3.tar.gz) = 2fb24e97ead2e357957decb599bc72e27d08333afa395a20bd1188232b202556ec50a06b37cd999196623f5a808a2afaa7ea7eb0ae319e1a9d2a5824374cd873
+SHA512 (jupyter_kernel_test-0.4.0.tar.gz) = d1550b597dc081bd279cd918d8e18ee98a3cd43c8f0aa453c012b836b5ad14ff71a25c40b084375fdbd08adda6d879eb34f607e0c14449e272dfc5b95ff2a1e1
next reply other threads:[~2026-07-11 15:45 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-11 15:45 Elliott Sales de Andrade [this message]
2026-07-11 15:45 [rpms/python-jupyter-kernel-test] epel10: Update to latest version (#2027871) Elliott Sales de Andrade
2026-07-11 15:45 Elliott Sales de Andrade
2026-07-11 15:45 Elliott Sales de Andrade
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=178378473669.1.6907195172139460328.rpms-python-jupyter-kernel-test-fc4df60e0a33@fedoraproject.org \
--to=quantum.analyst@gmail.com \
--cc=git-commits@fedoraproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox