From 499cdbb9b8fedae8f96ed7a3ef8b52b9b1c9923e Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Mon, 3 Jun 2024 11:32:25 +0500 Subject: [PATCH] bump old api argument deprecation date --- src/ifcopenshell-python/test/api/test_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ifcopenshell-python/test/api/test_api.py b/src/ifcopenshell-python/test/api/test_api.py index 40e2135127..a0a35794c0 100644 --- a/src/ifcopenshell-python/test/api/test_api.py +++ b/src/ifcopenshell-python/test/api/test_api.py @@ -28,7 +28,7 @@ from typing import Union def deprecation_check(test): def new_test(self): - assert datetime.now().date() < datetime(2024, 6, 1).date(), "API arguments are completely deprecated" + assert datetime.now().date() < datetime(2024, 8, 1).date(), "API arguments are completely deprecated" test(self) return new_test