Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] A few python packages updates
@ 2023-09-16  3:31 tornaria
  2023-09-16  4:40 ` [PR PATCH] [Updated] " tornaria
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: tornaria @ 2023-09-16  3:31 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1254 bytes --]

There is a new pull request by tornaria against master on the void-packages repository

https://github.com/tornaria/void-packages python-updates
https://github.com/void-linux/void-packages/pull/46075

A few python packages updates
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/46075.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python-updates-46075.patch --]
[-- Type: text/x-diff, Size: 11551 bytes --]

From 98bab2b5b7d3ae06186642a11dd98e360784d434 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Wed, 16 Aug 2023 19:49:02 -0300
Subject: [PATCH 1/8] python3-pytest-asyncio: update to 0.21.1, adopt.

---
 .../python3-pytest-asyncio/patches/fix-test.patch | 15 +++++++++++++++
 srcpkgs/python3-pytest-asyncio/template           |  6 +++---
 2 files changed, 18 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/python3-pytest-asyncio/patches/fix-test.patch

diff --git a/srcpkgs/python3-pytest-asyncio/patches/fix-test.patch b/srcpkgs/python3-pytest-asyncio/patches/fix-test.patch
new file mode 100644
index 0000000000000..3eee8be42fadf
--- /dev/null
+++ b/srcpkgs/python3-pytest-asyncio/patches/fix-test.patch
@@ -0,0 +1,15 @@
+--- a/tests/hypothesis/test_inherited_test.py	2023-07-12 07:11:21.000000000 -0300
++++ b/tests/hypothesis/test_inherited_test.py	2023-09-15 19:12:21.328680631 -0300
+@@ -1,10 +1,11 @@
+ import hypothesis.strategies as st
+ import pytest
+-from hypothesis import given
++from hypothesis import given, settings, HealthCheck
+ 
+ 
+ class BaseClass:
+     @pytest.mark.asyncio
++    @settings(suppress_health_check=(HealthCheck.differing_executors,))
+     @given(value=st.integers())
+     async def test_hypothesis(self, value: int) -> None:
+         pass
diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template
index ec0fdcb061f3a..e9beec64ad8bd 100644
--- a/srcpkgs/python3-pytest-asyncio/template
+++ b/srcpkgs/python3-pytest-asyncio/template
@@ -1,18 +1,18 @@
 # Template file for 'python3-pytest-asyncio'
 pkgname=python3-pytest-asyncio
-version=0.21.0
+version=0.21.1
 revision=1
 build_style=python3-pep517
 hostmakedepends="python3-setuptools_scm python3-wheel"
 depends="python3-pytest"
 checkdepends="$depends python3-flaky python3-hypothesis python3-pytest-trio"
 short_desc="Pytest plugin for asyncio"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="Gonzalo Tornaría <tornaria@cmat.edu.uy>"
 license="Apache-2.0"
 homepage="https://github.com/pytest-dev/pytest-asyncio"
 changelog="https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/master/docs/source/reference/changelog.rst"
 distfiles="${PYPI_SITE}/p/pytest-asyncio/pytest-asyncio-${version}.tar.gz"
-checksum=2b38a496aef56f56b0e87557ec313e11e1ab9276fc3863f6a7be0f1d0e415e1b
+checksum=40a7eae6dded22c7b604986855ea48400ab15b069ae38116e8c01238e9eeb64d
 
 if [ "$XBPS_BUILD_ENVIRONMENT" = void-packages-ci ]; then
 	# these tests fail on CI (bind to a tcp address)

From 3921aed80d79b3e2f7146cb486b182e629203e5f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Wed, 16 Aug 2023 19:48:47 -0300
Subject: [PATCH 2/8] python3-pytest-mock: update to 3.11.1, adopt.

---
 srcpkgs/python3-pytest-mock/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python3-pytest-mock/template b/srcpkgs/python3-pytest-mock/template
index abb1557f6655a..9b7aec15db438 100644
--- a/srcpkgs/python3-pytest-mock/template
+++ b/srcpkgs/python3-pytest-mock/template
@@ -1,18 +1,18 @@
 # Template file for 'python3-pytest-mock'
 pkgname=python3-pytest-mock
-version=3.10.0
+version=3.11.1
 revision=1
 build_style=python3-pep517
 hostmakedepends="python3-setuptools_scm python3-wheel"
 depends="python3-pytest"
 checkdepends="python3-pytest-asyncio python3-mock"
 short_desc="Pytest plugin for mock"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="Gonzalo Tornaría <tornaria@cmat.edu.uy>"
 license="MIT"
 homepage="https://github.com/pytest-dev/pytest-mock/"
 changelog="https://raw.githubusercontent.com/pytest-dev/pytest-mock/main/CHANGELOG.rst"
 distfiles="${PYPI_SITE}/p/pytest-mock/pytest-mock-${version}.tar.gz"
-checksum=fbbdb085ef7c252a326fd8cdcac0aa3b1333d8811f131bdcc701002e1be7ed4f
+checksum=7f6b125602ac6d743e523ae0bfa71e1a697a2f5534064528c6ff84c2f7c2fc7f
 
 post_install() {
 	vlicense LICENSE

From 080fd1c2e9e7ad1d46905f95ab8c1eeeb794534a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Fri, 15 Sep 2023 18:13:43 -0300
Subject: [PATCH 3/8] python3-traitlets: update to 5.10.0.

---
 srcpkgs/python3-traitlets/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-traitlets/template b/srcpkgs/python3-traitlets/template
index a8ed6611188c5..3bafe071d86b1 100644
--- a/srcpkgs/python3-traitlets/template
+++ b/srcpkgs/python3-traitlets/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-traitlets'
 pkgname=python3-traitlets
-version=5.9.0
-revision=2
+version=5.10.0
+revision=1
 build_style=python3-pep517
 hostmakedepends="hatchling"
 depends="python3"
@@ -12,8 +12,8 @@ license="BSD-3-Clause"
 homepage="https://github.com/ipython/traitlets"
 changelog="https://github.com/ipython/traitlets/raw/main/CHANGELOG.md"
 distfiles="${PYPI_SITE}/t/traitlets/traitlets-${version}.tar.gz"
-checksum=f6cde21a9c68cf756af02035f72d5a723bf607e862e7be33ece505abf4a3bad9
+checksum=f584ea209240466e66e91f3c81aa7d004ba4cf794990b0c775938a1544217cd1
 
 post_install() {
-	vlicense COPYING.md LICENSE
+	vlicense LICENSE
 }

From bb53442715274a0a3272b0ab63980db83a4a4d14 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Fri, 15 Sep 2023 19:38:12 -0300
Subject: [PATCH 4/8] python3-fastjsonschema: update to 2.18.0.

---
 srcpkgs/python3-fastjsonschema/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python3-fastjsonschema/template b/srcpkgs/python3-fastjsonschema/template
index 54fbdb6dde100..94f8fb4d1e701 100644
--- a/srcpkgs/python3-fastjsonschema/template
+++ b/srcpkgs/python3-fastjsonschema/template
@@ -1,6 +1,6 @@
 # Template file for 'python3-fastjsonschema'
 pkgname=python3-fastjsonschema
-version=2.17.1
+version=2.18.0
 revision=1
 build_style=python3-pep517
 hostmakedepends="python3-setuptools python3-wheel"
@@ -12,7 +12,7 @@ license="BSD-3-Clause"
 homepage="https://github.com/horejsek/python-fastjsonschema"
 changelog="https://raw.githubusercontent.com/horejsek/python-fastjsonschema/master/CHANGELOG.txt"
 distfiles="https://github.com/horejsek/python-fastjsonschema/archive/refs/tags/v${version}.tar.gz"
-checksum=9295090b468152cea7a53c651a46d6a1afb83f0124f86c9a64da43fd3453a9f4
+checksum=c70f47e7bbe9257461048a752e6a5b901c665b962756306bff90cec3abb5c047
 
 post_install() {
 	vlicense LICENSE

From d2caa86cdd011e79a6644319d0b0daab0e3311e2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Fri, 15 Sep 2023 19:38:57 -0300
Subject: [PATCH 5/8] python3-overrides: update to 7.4.0.

---
 srcpkgs/python3-overrides/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python3-overrides/template b/srcpkgs/python3-overrides/template
index 9c1b507e92405..3cab429a607f9 100644
--- a/srcpkgs/python3-overrides/template
+++ b/srcpkgs/python3-overrides/template
@@ -1,6 +1,6 @@
 # Template file for 'python3-overrides'
 pkgname=python3-overrides
-version=7.3.1
+version=7.4.0
 revision=1
 build_style=python3-pep517
 hostmakedepends="python3-setuptools python3-wheel"
@@ -12,4 +12,4 @@ license="Apache-2.0"
 homepage="https://github.com/mkorpela/overrides"
 changelog="https://github.com/mkorpela/overrides/releases"
 distfiles="https://github.com/mkorpela/overrides/archive/refs/tags/${version}.tar.gz"
-checksum=ff904c45a8a664aaeeac0a849f5097567d52a88c2324b12ad002c8b58e83625c
+checksum=71858fabf82f2a793099cb84af91dd289500fa0c63f0923d4a8bfc3f6bbab703

From defe5ade8e5071b0b95d55e724e3697d4dd08734 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Fri, 15 Sep 2023 19:40:56 -0300
Subject: [PATCH 6/8] hatch-nodejs-version: update to 0.3.2.

---
 srcpkgs/hatch-nodejs-version/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hatch-nodejs-version/template b/srcpkgs/hatch-nodejs-version/template
index 389c85500bf21..e024fa684394c 100644
--- a/srcpkgs/hatch-nodejs-version/template
+++ b/srcpkgs/hatch-nodejs-version/template
@@ -1,6 +1,6 @@
 # Template file for 'hatch-nodejs-version'
 pkgname=hatch-nodejs-version
-version=0.3.1
+version=0.3.2
 revision=1
 build_style=python3-pep517
 hostmakedepends="hatchling"
@@ -12,7 +12,7 @@ license="MIT"
 homepage="https://github.com/agoose77/hatch-nodejs-version"
 changelog="https://github.com/agoose77/hatch-nodejs-version/releases"
 distfiles="https://github.com/agoose77/hatch-nodejs-version/archive/refs/tags/v${version}.tar.gz"
-checksum=9959efbee3021dba4da7f8c152cacf104c746341ed176cd0488cbf3b45deba4d
+checksum=c01dae87afcb7b6db421b5248154de26c556e569e2631e9f146bc5c78447eee6
 
 post_install() {
 	vlicense LICENSE.txt

From 587c4fe78485d3836590217729483fb03457c5be Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Fri, 15 Sep 2023 21:01:39 -0300
Subject: [PATCH 7/8] python3-coverage: update to 7.3.1.

---
 srcpkgs/python3-coverage/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python3-coverage/template b/srcpkgs/python3-coverage/template
index 514705a375cd1..59bb4e25f2b27 100644
--- a/srcpkgs/python3-coverage/template
+++ b/srcpkgs/python3-coverage/template
@@ -1,18 +1,18 @@
 # Template file for 'python3-coverage'
 pkgname=python3-coverage
-version=7.2.7
+version=7.3.1
 revision=1
 build_style=python3-pep517
 hostmakedepends="python3-setuptools python3-wheel"
 makedepends="python3-devel"
 checkdepends="$depends python3-pytest-xdist python3-flaky python3-hypothesis"
 short_desc="Code coverage tool for Python"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="Gonzalo Tornaría <tornaria@cmat.edu.uy>"
 license="Apache-2.0"
 homepage="https://github.com/nedbat/coveragepy"
 changelog="https://raw.githubusercontent.com/nedbat/coveragepy/master/CHANGES.rst"
 distfiles="${PYPI_SITE}/c/coverage/coverage-${version}.tar.gz"
-checksum=924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f44ed59
+checksum=6cb7fe1581deb67b782c153136541e20901aa312ceedaf1467dcb35255787952
 
 pre_check() {
 	# required setup, see tox.ini

From 3de1f228c15bb2ae28fbd6f11ecd69bb5f42bddb Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Sat, 16 Sep 2023 00:26:14 -0300
Subject: [PATCH 8/8] python3-async-lru: update to 2.0.4.

---
 srcpkgs/python3-async-lru/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python3-async-lru/template b/srcpkgs/python3-async-lru/template
index 130589174c1c9..7e801de5ff478 100644
--- a/srcpkgs/python3-async-lru/template
+++ b/srcpkgs/python3-async-lru/template
@@ -1,6 +1,6 @@
 # Template file for 'python3-async-lru'
 pkgname=python3-async-lru
-version=2.0.2
+version=2.0.4
 revision=1
 build_style=python3-pep517
 hostmakedepends="python3-wheel"
@@ -11,9 +11,9 @@ short_desc="Simple LRU cache for asyncio"
 maintainer="Gonzalo Tornaría <tornaria@cmat.edu.uy>"
 license="MIT"
 homepage="https://github.com/aio-libs/async-lru"
-changelog="https://github.com/aio-libs/async-lru/blob/master/CHANGES.rst"
+changelog="https://raw.githubusercontent.com/aio-libs/async-lru/master/CHANGES.rst"
 distfiles="${PYPI_SITE}/a/async-lru/async-lru-${version}.tar.gz"
-checksum=3b87ec4f2460c52cc7916a0138cc606b584c75d1ef7d661853c95d1d3acb869a
+checksum=b8a59a5df60805ff63220b2a0c5b5393da5521b113cd5465a44eb037d81a5627
 
 post_install() {
 	vlicense LICENSE

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PR PATCH] [Updated] A few python packages updates
  2023-09-16  3:31 [PR PATCH] A few python packages updates tornaria
@ 2023-09-16  4:40 ` tornaria
  2023-09-16 12:45 ` tornaria
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: tornaria @ 2023-09-16  4:40 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1259 bytes --]

There is an updated pull request by tornaria against master on the void-packages repository

https://github.com/tornaria/void-packages python-updates
https://github.com/void-linux/void-packages/pull/46075

A few python packages updates
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/46075.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python-updates-46075.patch --]
[-- Type: text/x-diff, Size: 14706 bytes --]

From 98bab2b5b7d3ae06186642a11dd98e360784d434 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Wed, 16 Aug 2023 19:49:02 -0300
Subject: [PATCH 01/10] python3-pytest-asyncio: update to 0.21.1, adopt.

---
 .../python3-pytest-asyncio/patches/fix-test.patch | 15 +++++++++++++++
 srcpkgs/python3-pytest-asyncio/template           |  6 +++---
 2 files changed, 18 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/python3-pytest-asyncio/patches/fix-test.patch

diff --git a/srcpkgs/python3-pytest-asyncio/patches/fix-test.patch b/srcpkgs/python3-pytest-asyncio/patches/fix-test.patch
new file mode 100644
index 0000000000000..3eee8be42fadf
--- /dev/null
+++ b/srcpkgs/python3-pytest-asyncio/patches/fix-test.patch
@@ -0,0 +1,15 @@
+--- a/tests/hypothesis/test_inherited_test.py	2023-07-12 07:11:21.000000000 -0300
++++ b/tests/hypothesis/test_inherited_test.py	2023-09-15 19:12:21.328680631 -0300
+@@ -1,10 +1,11 @@
+ import hypothesis.strategies as st
+ import pytest
+-from hypothesis import given
++from hypothesis import given, settings, HealthCheck
+ 
+ 
+ class BaseClass:
+     @pytest.mark.asyncio
++    @settings(suppress_health_check=(HealthCheck.differing_executors,))
+     @given(value=st.integers())
+     async def test_hypothesis(self, value: int) -> None:
+         pass
diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template
index ec0fdcb061f3a..e9beec64ad8bd 100644
--- a/srcpkgs/python3-pytest-asyncio/template
+++ b/srcpkgs/python3-pytest-asyncio/template
@@ -1,18 +1,18 @@
 # Template file for 'python3-pytest-asyncio'
 pkgname=python3-pytest-asyncio
-version=0.21.0
+version=0.21.1
 revision=1
 build_style=python3-pep517
 hostmakedepends="python3-setuptools_scm python3-wheel"
 depends="python3-pytest"
 checkdepends="$depends python3-flaky python3-hypothesis python3-pytest-trio"
 short_desc="Pytest plugin for asyncio"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="Gonzalo Tornaría <tornaria@cmat.edu.uy>"
 license="Apache-2.0"
 homepage="https://github.com/pytest-dev/pytest-asyncio"
 changelog="https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/master/docs/source/reference/changelog.rst"
 distfiles="${PYPI_SITE}/p/pytest-asyncio/pytest-asyncio-${version}.tar.gz"
-checksum=2b38a496aef56f56b0e87557ec313e11e1ab9276fc3863f6a7be0f1d0e415e1b
+checksum=40a7eae6dded22c7b604986855ea48400ab15b069ae38116e8c01238e9eeb64d
 
 if [ "$XBPS_BUILD_ENVIRONMENT" = void-packages-ci ]; then
 	# these tests fail on CI (bind to a tcp address)

From 3921aed80d79b3e2f7146cb486b182e629203e5f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Wed, 16 Aug 2023 19:48:47 -0300
Subject: [PATCH 02/10] python3-pytest-mock: update to 3.11.1, adopt.

---
 srcpkgs/python3-pytest-mock/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python3-pytest-mock/template b/srcpkgs/python3-pytest-mock/template
index abb1557f6655a..9b7aec15db438 100644
--- a/srcpkgs/python3-pytest-mock/template
+++ b/srcpkgs/python3-pytest-mock/template
@@ -1,18 +1,18 @@
 # Template file for 'python3-pytest-mock'
 pkgname=python3-pytest-mock
-version=3.10.0
+version=3.11.1
 revision=1
 build_style=python3-pep517
 hostmakedepends="python3-setuptools_scm python3-wheel"
 depends="python3-pytest"
 checkdepends="python3-pytest-asyncio python3-mock"
 short_desc="Pytest plugin for mock"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="Gonzalo Tornaría <tornaria@cmat.edu.uy>"
 license="MIT"
 homepage="https://github.com/pytest-dev/pytest-mock/"
 changelog="https://raw.githubusercontent.com/pytest-dev/pytest-mock/main/CHANGELOG.rst"
 distfiles="${PYPI_SITE}/p/pytest-mock/pytest-mock-${version}.tar.gz"
-checksum=fbbdb085ef7c252a326fd8cdcac0aa3b1333d8811f131bdcc701002e1be7ed4f
+checksum=7f6b125602ac6d743e523ae0bfa71e1a697a2f5534064528c6ff84c2f7c2fc7f
 
 post_install() {
 	vlicense LICENSE

From 080fd1c2e9e7ad1d46905f95ab8c1eeeb794534a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Fri, 15 Sep 2023 18:13:43 -0300
Subject: [PATCH 03/10] python3-traitlets: update to 5.10.0.

---
 srcpkgs/python3-traitlets/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-traitlets/template b/srcpkgs/python3-traitlets/template
index a8ed6611188c5..3bafe071d86b1 100644
--- a/srcpkgs/python3-traitlets/template
+++ b/srcpkgs/python3-traitlets/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-traitlets'
 pkgname=python3-traitlets
-version=5.9.0
-revision=2
+version=5.10.0
+revision=1
 build_style=python3-pep517
 hostmakedepends="hatchling"
 depends="python3"
@@ -12,8 +12,8 @@ license="BSD-3-Clause"
 homepage="https://github.com/ipython/traitlets"
 changelog="https://github.com/ipython/traitlets/raw/main/CHANGELOG.md"
 distfiles="${PYPI_SITE}/t/traitlets/traitlets-${version}.tar.gz"
-checksum=f6cde21a9c68cf756af02035f72d5a723bf607e862e7be33ece505abf4a3bad9
+checksum=f584ea209240466e66e91f3c81aa7d004ba4cf794990b0c775938a1544217cd1
 
 post_install() {
-	vlicense COPYING.md LICENSE
+	vlicense LICENSE
 }

From bb53442715274a0a3272b0ab63980db83a4a4d14 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Fri, 15 Sep 2023 19:38:12 -0300
Subject: [PATCH 04/10] python3-fastjsonschema: update to 2.18.0.

---
 srcpkgs/python3-fastjsonschema/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python3-fastjsonschema/template b/srcpkgs/python3-fastjsonschema/template
index 54fbdb6dde100..94f8fb4d1e701 100644
--- a/srcpkgs/python3-fastjsonschema/template
+++ b/srcpkgs/python3-fastjsonschema/template
@@ -1,6 +1,6 @@
 # Template file for 'python3-fastjsonschema'
 pkgname=python3-fastjsonschema
-version=2.17.1
+version=2.18.0
 revision=1
 build_style=python3-pep517
 hostmakedepends="python3-setuptools python3-wheel"
@@ -12,7 +12,7 @@ license="BSD-3-Clause"
 homepage="https://github.com/horejsek/python-fastjsonschema"
 changelog="https://raw.githubusercontent.com/horejsek/python-fastjsonschema/master/CHANGELOG.txt"
 distfiles="https://github.com/horejsek/python-fastjsonschema/archive/refs/tags/v${version}.tar.gz"
-checksum=9295090b468152cea7a53c651a46d6a1afb83f0124f86c9a64da43fd3453a9f4
+checksum=c70f47e7bbe9257461048a752e6a5b901c665b962756306bff90cec3abb5c047
 
 post_install() {
 	vlicense LICENSE

From d2caa86cdd011e79a6644319d0b0daab0e3311e2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Fri, 15 Sep 2023 19:38:57 -0300
Subject: [PATCH 05/10] python3-overrides: update to 7.4.0.

---
 srcpkgs/python3-overrides/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python3-overrides/template b/srcpkgs/python3-overrides/template
index 9c1b507e92405..3cab429a607f9 100644
--- a/srcpkgs/python3-overrides/template
+++ b/srcpkgs/python3-overrides/template
@@ -1,6 +1,6 @@
 # Template file for 'python3-overrides'
 pkgname=python3-overrides
-version=7.3.1
+version=7.4.0
 revision=1
 build_style=python3-pep517
 hostmakedepends="python3-setuptools python3-wheel"
@@ -12,4 +12,4 @@ license="Apache-2.0"
 homepage="https://github.com/mkorpela/overrides"
 changelog="https://github.com/mkorpela/overrides/releases"
 distfiles="https://github.com/mkorpela/overrides/archive/refs/tags/${version}.tar.gz"
-checksum=ff904c45a8a664aaeeac0a849f5097567d52a88c2324b12ad002c8b58e83625c
+checksum=71858fabf82f2a793099cb84af91dd289500fa0c63f0923d4a8bfc3f6bbab703

From defe5ade8e5071b0b95d55e724e3697d4dd08734 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Fri, 15 Sep 2023 19:40:56 -0300
Subject: [PATCH 06/10] hatch-nodejs-version: update to 0.3.2.

---
 srcpkgs/hatch-nodejs-version/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hatch-nodejs-version/template b/srcpkgs/hatch-nodejs-version/template
index 389c85500bf21..e024fa684394c 100644
--- a/srcpkgs/hatch-nodejs-version/template
+++ b/srcpkgs/hatch-nodejs-version/template
@@ -1,6 +1,6 @@
 # Template file for 'hatch-nodejs-version'
 pkgname=hatch-nodejs-version
-version=0.3.1
+version=0.3.2
 revision=1
 build_style=python3-pep517
 hostmakedepends="hatchling"
@@ -12,7 +12,7 @@ license="MIT"
 homepage="https://github.com/agoose77/hatch-nodejs-version"
 changelog="https://github.com/agoose77/hatch-nodejs-version/releases"
 distfiles="https://github.com/agoose77/hatch-nodejs-version/archive/refs/tags/v${version}.tar.gz"
-checksum=9959efbee3021dba4da7f8c152cacf104c746341ed176cd0488cbf3b45deba4d
+checksum=c01dae87afcb7b6db421b5248154de26c556e569e2631e9f146bc5c78447eee6
 
 post_install() {
 	vlicense LICENSE.txt

From 587c4fe78485d3836590217729483fb03457c5be Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Fri, 15 Sep 2023 21:01:39 -0300
Subject: [PATCH 07/10] python3-coverage: update to 7.3.1.

---
 srcpkgs/python3-coverage/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python3-coverage/template b/srcpkgs/python3-coverage/template
index 514705a375cd1..59bb4e25f2b27 100644
--- a/srcpkgs/python3-coverage/template
+++ b/srcpkgs/python3-coverage/template
@@ -1,18 +1,18 @@
 # Template file for 'python3-coverage'
 pkgname=python3-coverage
-version=7.2.7
+version=7.3.1
 revision=1
 build_style=python3-pep517
 hostmakedepends="python3-setuptools python3-wheel"
 makedepends="python3-devel"
 checkdepends="$depends python3-pytest-xdist python3-flaky python3-hypothesis"
 short_desc="Code coverage tool for Python"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="Gonzalo Tornaría <tornaria@cmat.edu.uy>"
 license="Apache-2.0"
 homepage="https://github.com/nedbat/coveragepy"
 changelog="https://raw.githubusercontent.com/nedbat/coveragepy/master/CHANGES.rst"
 distfiles="${PYPI_SITE}/c/coverage/coverage-${version}.tar.gz"
-checksum=924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f44ed59
+checksum=6cb7fe1581deb67b782c153136541e20901aa312ceedaf1467dcb35255787952
 
 pre_check() {
 	# required setup, see tox.ini

From 3de1f228c15bb2ae28fbd6f11ecd69bb5f42bddb Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Sat, 16 Sep 2023 00:26:14 -0300
Subject: [PATCH 08/10] python3-async-lru: update to 2.0.4.

---
 srcpkgs/python3-async-lru/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python3-async-lru/template b/srcpkgs/python3-async-lru/template
index 130589174c1c9..7e801de5ff478 100644
--- a/srcpkgs/python3-async-lru/template
+++ b/srcpkgs/python3-async-lru/template
@@ -1,6 +1,6 @@
 # Template file for 'python3-async-lru'
 pkgname=python3-async-lru
-version=2.0.2
+version=2.0.4
 revision=1
 build_style=python3-pep517
 hostmakedepends="python3-wheel"
@@ -11,9 +11,9 @@ short_desc="Simple LRU cache for asyncio"
 maintainer="Gonzalo Tornaría <tornaria@cmat.edu.uy>"
 license="MIT"
 homepage="https://github.com/aio-libs/async-lru"
-changelog="https://github.com/aio-libs/async-lru/blob/master/CHANGES.rst"
+changelog="https://raw.githubusercontent.com/aio-libs/async-lru/master/CHANGES.rst"
 distfiles="${PYPI_SITE}/a/async-lru/async-lru-${version}.tar.gz"
-checksum=3b87ec4f2460c52cc7916a0138cc606b584c75d1ef7d661853c95d1d3acb869a
+checksum=b8a59a5df60805ff63220b2a0c5b5393da5521b113cd5465a44eb037d81a5627
 
 post_install() {
 	vlicense LICENSE

From f298ca1ffb72c64cb14121239d8c8135382faf0c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Sat, 16 Sep 2023 01:18:20 -0300
Subject: [PATCH 09/10] python3-pytest-httpserver: update to 1.0.8.

---
 srcpkgs/python3-pytest-httpserver/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-pytest-httpserver/template b/srcpkgs/python3-pytest-httpserver/template
index 202735222e952..c8d3ca25ed88a 100644
--- a/srcpkgs/python3-pytest-httpserver/template
+++ b/srcpkgs/python3-pytest-httpserver/template
@@ -1,18 +1,18 @@
 # Template file for 'python3-pytest-httpserver'
 pkgname=python3-pytest-httpserver
-version=1.0.5
-revision=2
+version=1.0.8
+revision=1
 build_style=python3-pep517
 hostmakedepends="python3-poetry-core"
 depends="python3-pytest python3-Werkzeug"
-checkdepends="${depends} python3-MarkupSafe python3-requests"
+checkdepends="${depends} python3-MarkupSafe python3-requests python3-toml"
 short_desc="HTTP server for pytest"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT"
 homepage="https://www.github.com/csernazs/pytest-httpserver"
 changelog="https://raw.githubusercontent.com/csernazs/pytest-httpserver/master/CHANGES.rst"
 distfiles="https://github.com/csernazs/pytest-httpserver/archive/refs/tags/${version}.tar.gz"
-checksum=932843df9fa584e6a664b2e7a21dec4ddf9507c235a78853f21e00b111352395
+checksum=d25a765e660f252029738392cff49dd3b2d6e5070ac81c7fb794ae6eac93ef76
 
 post_install() {
 	vlicense LICENSE

From 6125ac795a65334a359f8c39a5ce72dec27f45a9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Sat, 16 Sep 2023 01:31:20 -0300
Subject: [PATCH 10/10] python3-responses: update to 0.23.3.

---
 srcpkgs/python3-responses/template | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/srcpkgs/python3-responses/template b/srcpkgs/python3-responses/template
index 5e58e485d98bd..82244f6389736 100644
--- a/srcpkgs/python3-responses/template
+++ b/srcpkgs/python3-responses/template
@@ -1,19 +1,18 @@
 # Template file for 'python3-responses'
 pkgname=python3-responses
-version=0.23.1
+version=0.23.3
 revision=1
-build_style=python3-module
-hostmakedepends="python3-setuptools"
+build_style=python3-pep517
+hostmakedepends="python3-setuptools python3-wheel"
 depends="python3-requests python3-urllib3 python3-yaml"
-checkdepends="${depends} python3-tomli-w python3-pytest-asyncio
- python3-pytest-httpserver"
+checkdepends="$depends python3-pytest-httpserver python3-tomli-w"
 short_desc="Utility for mocking out the Python Requests library"
 maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
 license="Apache-2.0"
 homepage="https://github.com/getsentry/responses"
 changelog="https://raw.githubusercontent.com/getsentry/responses/master/CHANGES"
 distfiles="${PYPI_SITE}/r/responses/responses-${version}.tar.gz"
-checksum=c4d9aa9fc888188f0c673eff79a8dadbe2e75b7fe879dc80a221a06e0a68138f
+checksum=205029e1cb334c21cb4ec64fc7599be48b859a0fd381a42443cdd600bfe8b16a
 
 post_install() {
 	rm -r ${DESTDIR}/${py3_sitelib}/responses/tests

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PR PATCH] [Updated] A few python packages updates
  2023-09-16  3:31 [PR PATCH] A few python packages updates tornaria
  2023-09-16  4:40 ` [PR PATCH] [Updated] " tornaria
@ 2023-09-16 12:45 ` tornaria
  2023-09-16 13:12 ` tornaria
  2023-09-18 19:02 ` [PR PATCH] [Merged]: " Duncaen
  3 siblings, 0 replies; 5+ messages in thread
From: tornaria @ 2023-09-16 12:45 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1259 bytes --]

There is an updated pull request by tornaria against master on the void-packages repository

https://github.com/tornaria/void-packages python-updates
https://github.com/void-linux/void-packages/pull/46075

A few python packages updates
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


A patch file from https://github.com/void-linux/void-packages/pull/46075.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-python-updates-46075.patch --]
[-- Type: text/x-diff, Size: 14914 bytes --]

From 98bab2b5b7d3ae06186642a11dd98e360784d434 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Wed, 16 Aug 2023 19:49:02 -0300
Subject: [PATCH 01/10] python3-pytest-asyncio: update to 0.21.1, adopt.

---
 .../python3-pytest-asyncio/patches/fix-test.patch | 15 +++++++++++++++
 srcpkgs/python3-pytest-asyncio/template           |  6 +++---
 2 files changed, 18 insertions(+), 3 deletions(-)
 create mode 100644 srcpkgs/python3-pytest-asyncio/patches/fix-test.patch

diff --git a/srcpkgs/python3-pytest-asyncio/patches/fix-test.patch b/srcpkgs/python3-pytest-asyncio/patches/fix-test.patch
new file mode 100644
index 0000000000000..3eee8be42fadf
--- /dev/null
+++ b/srcpkgs/python3-pytest-asyncio/patches/fix-test.patch
@@ -0,0 +1,15 @@
+--- a/tests/hypothesis/test_inherited_test.py	2023-07-12 07:11:21.000000000 -0300
++++ b/tests/hypothesis/test_inherited_test.py	2023-09-15 19:12:21.328680631 -0300
+@@ -1,10 +1,11 @@
+ import hypothesis.strategies as st
+ import pytest
+-from hypothesis import given
++from hypothesis import given, settings, HealthCheck
+ 
+ 
+ class BaseClass:
+     @pytest.mark.asyncio
++    @settings(suppress_health_check=(HealthCheck.differing_executors,))
+     @given(value=st.integers())
+     async def test_hypothesis(self, value: int) -> None:
+         pass
diff --git a/srcpkgs/python3-pytest-asyncio/template b/srcpkgs/python3-pytest-asyncio/template
index ec0fdcb061f3a..e9beec64ad8bd 100644
--- a/srcpkgs/python3-pytest-asyncio/template
+++ b/srcpkgs/python3-pytest-asyncio/template
@@ -1,18 +1,18 @@
 # Template file for 'python3-pytest-asyncio'
 pkgname=python3-pytest-asyncio
-version=0.21.0
+version=0.21.1
 revision=1
 build_style=python3-pep517
 hostmakedepends="python3-setuptools_scm python3-wheel"
 depends="python3-pytest"
 checkdepends="$depends python3-flaky python3-hypothesis python3-pytest-trio"
 short_desc="Pytest plugin for asyncio"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="Gonzalo Tornaría <tornaria@cmat.edu.uy>"
 license="Apache-2.0"
 homepage="https://github.com/pytest-dev/pytest-asyncio"
 changelog="https://raw.githubusercontent.com/pytest-dev/pytest-asyncio/master/docs/source/reference/changelog.rst"
 distfiles="${PYPI_SITE}/p/pytest-asyncio/pytest-asyncio-${version}.tar.gz"
-checksum=2b38a496aef56f56b0e87557ec313e11e1ab9276fc3863f6a7be0f1d0e415e1b
+checksum=40a7eae6dded22c7b604986855ea48400ab15b069ae38116e8c01238e9eeb64d
 
 if [ "$XBPS_BUILD_ENVIRONMENT" = void-packages-ci ]; then
 	# these tests fail on CI (bind to a tcp address)

From 3921aed80d79b3e2f7146cb486b182e629203e5f Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Wed, 16 Aug 2023 19:48:47 -0300
Subject: [PATCH 02/10] python3-pytest-mock: update to 3.11.1, adopt.

---
 srcpkgs/python3-pytest-mock/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python3-pytest-mock/template b/srcpkgs/python3-pytest-mock/template
index abb1557f6655a..9b7aec15db438 100644
--- a/srcpkgs/python3-pytest-mock/template
+++ b/srcpkgs/python3-pytest-mock/template
@@ -1,18 +1,18 @@
 # Template file for 'python3-pytest-mock'
 pkgname=python3-pytest-mock
-version=3.10.0
+version=3.11.1
 revision=1
 build_style=python3-pep517
 hostmakedepends="python3-setuptools_scm python3-wheel"
 depends="python3-pytest"
 checkdepends="python3-pytest-asyncio python3-mock"
 short_desc="Pytest plugin for mock"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="Gonzalo Tornaría <tornaria@cmat.edu.uy>"
 license="MIT"
 homepage="https://github.com/pytest-dev/pytest-mock/"
 changelog="https://raw.githubusercontent.com/pytest-dev/pytest-mock/main/CHANGELOG.rst"
 distfiles="${PYPI_SITE}/p/pytest-mock/pytest-mock-${version}.tar.gz"
-checksum=fbbdb085ef7c252a326fd8cdcac0aa3b1333d8811f131bdcc701002e1be7ed4f
+checksum=7f6b125602ac6d743e523ae0bfa71e1a697a2f5534064528c6ff84c2f7c2fc7f
 
 post_install() {
 	vlicense LICENSE

From 080fd1c2e9e7ad1d46905f95ab8c1eeeb794534a Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Fri, 15 Sep 2023 18:13:43 -0300
Subject: [PATCH 03/10] python3-traitlets: update to 5.10.0.

---
 srcpkgs/python3-traitlets/template | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-traitlets/template b/srcpkgs/python3-traitlets/template
index a8ed6611188c5..3bafe071d86b1 100644
--- a/srcpkgs/python3-traitlets/template
+++ b/srcpkgs/python3-traitlets/template
@@ -1,7 +1,7 @@
 # Template file for 'python3-traitlets'
 pkgname=python3-traitlets
-version=5.9.0
-revision=2
+version=5.10.0
+revision=1
 build_style=python3-pep517
 hostmakedepends="hatchling"
 depends="python3"
@@ -12,8 +12,8 @@ license="BSD-3-Clause"
 homepage="https://github.com/ipython/traitlets"
 changelog="https://github.com/ipython/traitlets/raw/main/CHANGELOG.md"
 distfiles="${PYPI_SITE}/t/traitlets/traitlets-${version}.tar.gz"
-checksum=f6cde21a9c68cf756af02035f72d5a723bf607e862e7be33ece505abf4a3bad9
+checksum=f584ea209240466e66e91f3c81aa7d004ba4cf794990b0c775938a1544217cd1
 
 post_install() {
-	vlicense COPYING.md LICENSE
+	vlicense LICENSE
 }

From bb53442715274a0a3272b0ab63980db83a4a4d14 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Fri, 15 Sep 2023 19:38:12 -0300
Subject: [PATCH 04/10] python3-fastjsonschema: update to 2.18.0.

---
 srcpkgs/python3-fastjsonschema/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python3-fastjsonschema/template b/srcpkgs/python3-fastjsonschema/template
index 54fbdb6dde100..94f8fb4d1e701 100644
--- a/srcpkgs/python3-fastjsonschema/template
+++ b/srcpkgs/python3-fastjsonschema/template
@@ -1,6 +1,6 @@
 # Template file for 'python3-fastjsonschema'
 pkgname=python3-fastjsonschema
-version=2.17.1
+version=2.18.0
 revision=1
 build_style=python3-pep517
 hostmakedepends="python3-setuptools python3-wheel"
@@ -12,7 +12,7 @@ license="BSD-3-Clause"
 homepage="https://github.com/horejsek/python-fastjsonschema"
 changelog="https://raw.githubusercontent.com/horejsek/python-fastjsonschema/master/CHANGELOG.txt"
 distfiles="https://github.com/horejsek/python-fastjsonschema/archive/refs/tags/v${version}.tar.gz"
-checksum=9295090b468152cea7a53c651a46d6a1afb83f0124f86c9a64da43fd3453a9f4
+checksum=c70f47e7bbe9257461048a752e6a5b901c665b962756306bff90cec3abb5c047
 
 post_install() {
 	vlicense LICENSE

From d2caa86cdd011e79a6644319d0b0daab0e3311e2 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Fri, 15 Sep 2023 19:38:57 -0300
Subject: [PATCH 05/10] python3-overrides: update to 7.4.0.

---
 srcpkgs/python3-overrides/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/python3-overrides/template b/srcpkgs/python3-overrides/template
index 9c1b507e92405..3cab429a607f9 100644
--- a/srcpkgs/python3-overrides/template
+++ b/srcpkgs/python3-overrides/template
@@ -1,6 +1,6 @@
 # Template file for 'python3-overrides'
 pkgname=python3-overrides
-version=7.3.1
+version=7.4.0
 revision=1
 build_style=python3-pep517
 hostmakedepends="python3-setuptools python3-wheel"
@@ -12,4 +12,4 @@ license="Apache-2.0"
 homepage="https://github.com/mkorpela/overrides"
 changelog="https://github.com/mkorpela/overrides/releases"
 distfiles="https://github.com/mkorpela/overrides/archive/refs/tags/${version}.tar.gz"
-checksum=ff904c45a8a664aaeeac0a849f5097567d52a88c2324b12ad002c8b58e83625c
+checksum=71858fabf82f2a793099cb84af91dd289500fa0c63f0923d4a8bfc3f6bbab703

From defe5ade8e5071b0b95d55e724e3697d4dd08734 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Fri, 15 Sep 2023 19:40:56 -0300
Subject: [PATCH 06/10] hatch-nodejs-version: update to 0.3.2.

---
 srcpkgs/hatch-nodejs-version/template | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/srcpkgs/hatch-nodejs-version/template b/srcpkgs/hatch-nodejs-version/template
index 389c85500bf21..e024fa684394c 100644
--- a/srcpkgs/hatch-nodejs-version/template
+++ b/srcpkgs/hatch-nodejs-version/template
@@ -1,6 +1,6 @@
 # Template file for 'hatch-nodejs-version'
 pkgname=hatch-nodejs-version
-version=0.3.1
+version=0.3.2
 revision=1
 build_style=python3-pep517
 hostmakedepends="hatchling"
@@ -12,7 +12,7 @@ license="MIT"
 homepage="https://github.com/agoose77/hatch-nodejs-version"
 changelog="https://github.com/agoose77/hatch-nodejs-version/releases"
 distfiles="https://github.com/agoose77/hatch-nodejs-version/archive/refs/tags/v${version}.tar.gz"
-checksum=9959efbee3021dba4da7f8c152cacf104c746341ed176cd0488cbf3b45deba4d
+checksum=c01dae87afcb7b6db421b5248154de26c556e569e2631e9f146bc5c78447eee6
 
 post_install() {
 	vlicense LICENSE.txt

From 587c4fe78485d3836590217729483fb03457c5be Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Fri, 15 Sep 2023 21:01:39 -0300
Subject: [PATCH 07/10] python3-coverage: update to 7.3.1.

---
 srcpkgs/python3-coverage/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python3-coverage/template b/srcpkgs/python3-coverage/template
index 514705a375cd1..59bb4e25f2b27 100644
--- a/srcpkgs/python3-coverage/template
+++ b/srcpkgs/python3-coverage/template
@@ -1,18 +1,18 @@
 # Template file for 'python3-coverage'
 pkgname=python3-coverage
-version=7.2.7
+version=7.3.1
 revision=1
 build_style=python3-pep517
 hostmakedepends="python3-setuptools python3-wheel"
 makedepends="python3-devel"
 checkdepends="$depends python3-pytest-xdist python3-flaky python3-hypothesis"
 short_desc="Code coverage tool for Python"
-maintainer="Orphaned <orphan@voidlinux.org>"
+maintainer="Gonzalo Tornaría <tornaria@cmat.edu.uy>"
 license="Apache-2.0"
 homepage="https://github.com/nedbat/coveragepy"
 changelog="https://raw.githubusercontent.com/nedbat/coveragepy/master/CHANGES.rst"
 distfiles="${PYPI_SITE}/c/coverage/coverage-${version}.tar.gz"
-checksum=924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f44ed59
+checksum=6cb7fe1581deb67b782c153136541e20901aa312ceedaf1467dcb35255787952
 
 pre_check() {
 	# required setup, see tox.ini

From 3de1f228c15bb2ae28fbd6f11ecd69bb5f42bddb Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Sat, 16 Sep 2023 00:26:14 -0300
Subject: [PATCH 08/10] python3-async-lru: update to 2.0.4.

---
 srcpkgs/python3-async-lru/template | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/srcpkgs/python3-async-lru/template b/srcpkgs/python3-async-lru/template
index 130589174c1c9..7e801de5ff478 100644
--- a/srcpkgs/python3-async-lru/template
+++ b/srcpkgs/python3-async-lru/template
@@ -1,6 +1,6 @@
 # Template file for 'python3-async-lru'
 pkgname=python3-async-lru
-version=2.0.2
+version=2.0.4
 revision=1
 build_style=python3-pep517
 hostmakedepends="python3-wheel"
@@ -11,9 +11,9 @@ short_desc="Simple LRU cache for asyncio"
 maintainer="Gonzalo Tornaría <tornaria@cmat.edu.uy>"
 license="MIT"
 homepage="https://github.com/aio-libs/async-lru"
-changelog="https://github.com/aio-libs/async-lru/blob/master/CHANGES.rst"
+changelog="https://raw.githubusercontent.com/aio-libs/async-lru/master/CHANGES.rst"
 distfiles="${PYPI_SITE}/a/async-lru/async-lru-${version}.tar.gz"
-checksum=3b87ec4f2460c52cc7916a0138cc606b584c75d1ef7d661853c95d1d3acb869a
+checksum=b8a59a5df60805ff63220b2a0c5b5393da5521b113cd5465a44eb037d81a5627
 
 post_install() {
 	vlicense LICENSE

From c15386dcdb25c8633ae3988bf65e7770c6c28368 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Sat, 16 Sep 2023 01:18:20 -0300
Subject: [PATCH 09/10] python3-pytest-httpserver: update to 1.0.8.

---
 srcpkgs/python3-pytest-httpserver/template | 15 +++++++++++----
 1 file changed, 11 insertions(+), 4 deletions(-)

diff --git a/srcpkgs/python3-pytest-httpserver/template b/srcpkgs/python3-pytest-httpserver/template
index 202735222e952..67728fdc29bc2 100644
--- a/srcpkgs/python3-pytest-httpserver/template
+++ b/srcpkgs/python3-pytest-httpserver/template
@@ -1,18 +1,25 @@
 # Template file for 'python3-pytest-httpserver'
 pkgname=python3-pytest-httpserver
-version=1.0.5
-revision=2
+version=1.0.8
+revision=1
 build_style=python3-pep517
 hostmakedepends="python3-poetry-core"
 depends="python3-pytest python3-Werkzeug"
-checkdepends="${depends} python3-MarkupSafe python3-requests"
+checkdepends="${depends} python3-MarkupSafe python3-requests python3-toml"
 short_desc="HTTP server for pytest"
 maintainer="Orphaned <orphan@voidlinux.org>"
 license="MIT"
 homepage="https://www.github.com/csernazs/pytest-httpserver"
 changelog="https://raw.githubusercontent.com/csernazs/pytest-httpserver/master/CHANGES.rst"
 distfiles="https://github.com/csernazs/pytest-httpserver/archive/refs/tags/${version}.tar.gz"
-checksum=932843df9fa584e6a664b2e7a21dec4ddf9507c235a78853f21e00b111352395
+checksum=d25a765e660f252029738392cff49dd3b2d6e5070ac81c7fb794ae6eac93ef76
+
+if [ "$XBPS_BUILD_ENVIRONMENT" = "void-packages-ci" ]; then
+	# this test fails on CI (bind to ipv6 "::1" address)
+	make_check_args="
+	 --deselect=tests/test_ip_protocols.py::test_ipv6
+	 "
+fi
 
 post_install() {
 	vlicense LICENSE

From 6055bad1f40493a78e7b74f3439c397b7879a0a5 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Sat, 16 Sep 2023 01:31:20 -0300
Subject: [PATCH 10/10] python3-responses: update to 0.23.3.

---
 srcpkgs/python3-responses/template | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/srcpkgs/python3-responses/template b/srcpkgs/python3-responses/template
index 5e58e485d98bd..82244f6389736 100644
--- a/srcpkgs/python3-responses/template
+++ b/srcpkgs/python3-responses/template
@@ -1,19 +1,18 @@
 # Template file for 'python3-responses'
 pkgname=python3-responses
-version=0.23.1
+version=0.23.3
 revision=1
-build_style=python3-module
-hostmakedepends="python3-setuptools"
+build_style=python3-pep517
+hostmakedepends="python3-setuptools python3-wheel"
 depends="python3-requests python3-urllib3 python3-yaml"
-checkdepends="${depends} python3-tomli-w python3-pytest-asyncio
- python3-pytest-httpserver"
+checkdepends="$depends python3-pytest-httpserver python3-tomli-w"
 short_desc="Utility for mocking out the Python Requests library"
 maintainer="Joel Beckmeyer <joel@beckmeyer.us>"
 license="Apache-2.0"
 homepage="https://github.com/getsentry/responses"
 changelog="https://raw.githubusercontent.com/getsentry/responses/master/CHANGES"
 distfiles="${PYPI_SITE}/r/responses/responses-${version}.tar.gz"
-checksum=c4d9aa9fc888188f0c673eff79a8dadbe2e75b7fe879dc80a221a06e0a68138f
+checksum=205029e1cb334c21cb4ec64fc7599be48b859a0fd381a42443cdd600bfe8b16a
 
 post_install() {
 	rm -r ${DESTDIR}/${py3_sitelib}/responses/tests

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: A few python packages updates
  2023-09-16  3:31 [PR PATCH] A few python packages updates tornaria
  2023-09-16  4:40 ` [PR PATCH] [Updated] " tornaria
  2023-09-16 12:45 ` tornaria
@ 2023-09-16 13:12 ` tornaria
  2023-09-18 19:02 ` [PR PATCH] [Merged]: " Duncaen
  3 siblings, 0 replies; 5+ messages in thread
From: tornaria @ 2023-09-16 13:12 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 227 bytes --]

New comment by tornaria on void-packages repository

https://github.com/void-linux/void-packages/pull/46075#issuecomment-1722227698

Comment:
Force push:
 - `pytest-httpserver`: disable (in CI only) a test that binds to `::1`

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PR PATCH] [Merged]: A few python packages updates
  2023-09-16  3:31 [PR PATCH] A few python packages updates tornaria
                   ` (2 preceding siblings ...)
  2023-09-16 13:12 ` tornaria
@ 2023-09-18 19:02 ` Duncaen
  3 siblings, 0 replies; 5+ messages in thread
From: Duncaen @ 2023-09-18 19:02 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1094 bytes --]

There's a merged pull request on the void-packages repository

A few python packages updates
https://github.com/void-linux/void-packages/pull/46075

Description:
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->
<!--
#### Local build testing
- I built this PR locally for my native architecture, (ARCH-LIBC)
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - aarch64-musl
  - armv7l
  - armv6l-musl
-->


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2023-09-18 19:02 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-09-16  3:31 [PR PATCH] A few python packages updates tornaria
2023-09-16  4:40 ` [PR PATCH] [Updated] " tornaria
2023-09-16 12:45 ` tornaria
2023-09-16 13:12 ` tornaria
2023-09-18 19:02 ` [PR PATCH] [Merged]: " Duncaen

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).