New package: python3-jupyter_packaging-0.12.3
This commit is contained in:
parent
b272625b88
commit
543f671f13
2 changed files with 43 additions and 0 deletions
23
srcpkgs/python3-jupyter_packaging/patches/178.patch
Normal file
23
srcpkgs/python3-jupyter_packaging/patches/178.patch
Normal file
|
@ -0,0 +1,23 @@
|
|||
From e963fb27aa3b58cd70c5ca61ebe68c222d803b7e Mon Sep 17 00:00:00 2001
|
||||
From: Steven Silvester <steven.silvester@ieee.org>
|
||||
Date: Tue, 7 Mar 2023 10:47:22 -0600
|
||||
Subject: [PATCH] Ignore warning raised when importing
|
||||
setuptools.command.develop
|
||||
|
||||
---
|
||||
pyproject.toml | 4 +++-
|
||||
1 file changed, 3 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/pyproject.toml b/pyproject.toml
|
||||
index e4c1e27..b316257 100644
|
||||
--- a/pyproject.toml
|
||||
+++ b/pyproject.toml
|
||||
@@ -81,5 +81,7 @@ filterwarnings= [
|
||||
# Fail on warnings
|
||||
"error",
|
||||
# Ignore our own deprecation warnings.
|
||||
- "ignore:.*:deprecation.DeprecatedWarning"
|
||||
+ "ignore:.*:deprecation.DeprecatedWarning",
|
||||
+ # Ignore warning raised when importing setuptools.command.develop.
|
||||
+ "ignore:pkg_resources is deprecated as an API:DeprecationWarning"
|
||||
]
|
20
srcpkgs/python3-jupyter_packaging/template
Normal file
20
srcpkgs/python3-jupyter_packaging/template
Normal file
|
@ -0,0 +1,20 @@
|
|||
# Template file for 'python3-jupyter_packaging'
|
||||
pkgname=python3-jupyter_packaging
|
||||
version=0.12.3
|
||||
revision=1
|
||||
build_style=python3-pep517
|
||||
hostmakedepends="hatchling"
|
||||
depends="python3-deprecation python3-packaging python3-setuptools
|
||||
python3-tomlkit python3-wheel"
|
||||
checkdepends="$depends python3-pytest-timeout python3-pytest-mock"
|
||||
short_desc="Tools to help build and install Jupyter Python packages"
|
||||
maintainer="Gonzalo Tornaría <tornaria@cmat.edu.uy>"
|
||||
license="BSD-3-Clause"
|
||||
homepage="https://github.com/jupyter/jupyter-packaging"
|
||||
changelog="https://raw.githubusercontent.com/jupyter/jupyter-packaging/main/CHANGELOG.md"
|
||||
distfiles="https://github.com/jupyter/jupyter-packaging/archive/refs/tags/v${version}.tar.gz"
|
||||
checksum=3a326f3b4e8b7fea8b7abf775741996095a4caf13767a9c017e9f17043e591e0
|
||||
|
||||
post_install() {
|
||||
vlicense LICENSE
|
||||
}
|
Loading…
Add table
Reference in a new issue