mirror of
https://github.com/void-linux/void-packages.git
synced 2025-07-28 16:32:57 +02:00
python3-freezegun: update to 1.2.2.
This commit is contained in:
parent
f205d87867
commit
f3fb6c042b
2 changed files with 36 additions and 5 deletions
|
@ -0,0 +1,30 @@
|
||||||
|
From 57d024e4ce2516c55c715448296b9099db68343c Mon Sep 17 00:00:00 2001
|
||||||
|
From: Karthikeyan Singaravelan <tir.karthi@gmail.com>
|
||||||
|
Date: Fri, 7 May 2021 15:51:33 +0000
|
||||||
|
Subject: [PATCH] Fix decorate_class for Python 3.10 where staticmethod is
|
||||||
|
callable.
|
||||||
|
|
||||||
|
https://github.com/spulec/freezegun/pull/397 (edited by mgorny for more readable indent)
|
||||||
|
---
|
||||||
|
freezegun/api.py | 5 ++++-
|
||||||
|
1 file changed, 4 insertions(+), 1 deletion(-)
|
||||||
|
|
||||||
|
diff --git a/freezegun/api.py b/freezegun/api.py
|
||||||
|
index cab9ebe..eb3a931 100644
|
||||||
|
--- a/freezegun/api.py
|
||||||
|
+++ b/freezegun/api.py
|
||||||
|
@@ -598,7 +598,10 @@ class _freeze_time(object):
|
||||||
|
continue
|
||||||
|
seen.add(attr)
|
||||||
|
|
||||||
|
- if not callable(attr_value) or inspect.isclass(attr_value):
|
||||||
|
+ # staticmethods are callable from Python 3.10 . Hence skip them from decoration
|
||||||
|
+ if (not callable(attr_value)
|
||||||
|
+ or inspect.isclass(attr_value)
|
||||||
|
+ or isinstance(attr_value, staticmethod)):
|
||||||
|
continue
|
||||||
|
|
||||||
|
try:
|
||||||
|
--
|
||||||
|
2.31.1
|
||||||
|
|
|
@ -1,18 +1,19 @@
|
||||||
# Template file for 'python3-freezegun'
|
# Template file for 'python3-freezegun'
|
||||||
pkgname=python3-freezegun
|
pkgname=python3-freezegun
|
||||||
version=0.3.15
|
version=1.2.2
|
||||||
revision=3
|
revision=1
|
||||||
wrksrc="freezegun-${version}"
|
wrksrc="freezegun-${version}"
|
||||||
build_style=python3-module
|
build_style=python3-module
|
||||||
hostmakedepends="python3-setuptools"
|
hostmakedepends="python3-setuptools"
|
||||||
depends="python3-six python3-dateutil"
|
depends="python3-dateutil"
|
||||||
checkdepends="${depends} python3-nose python3-pytest"
|
checkdepends="${depends} python3-pytest-xdist"
|
||||||
short_desc="Let your Python tests travel through time"
|
short_desc="Let your Python tests travel through time"
|
||||||
maintainer="Aluísio Augusto Silva Gonçalves <aluisio@aasg.name>"
|
maintainer="Aluísio Augusto Silva Gonçalves <aluisio@aasg.name>"
|
||||||
license="Apache-2.0"
|
license="Apache-2.0"
|
||||||
homepage="https://github.com/spulec/freezegun"
|
homepage="https://github.com/spulec/freezegun"
|
||||||
|
changelog="https://raw.githubusercontent.com/spulec/freezegun/master/CHANGELOG"
|
||||||
distfiles="${PYPI_SITE}/f/freezegun/freezegun-${version}.tar.gz"
|
distfiles="${PYPI_SITE}/f/freezegun/freezegun-${version}.tar.gz"
|
||||||
checksum=e2062f2c7f95cc276a834c22f1a17179467176b624cc6f936e8bc3be5535ad1b
|
checksum=cd22d1ba06941384410cd967d8a99d5ae2442f57dfafeff2fda5de8dc5c05446
|
||||||
|
|
||||||
do_check() {
|
do_check() {
|
||||||
# Timezone needs to be fixed due to
|
# Timezone needs to be fixed due to
|
||||||
|
|
Loading…
Add table
Reference in a new issue