From 06cb7fdb40e775e2227c1f5a3ca9de275890b1d5 Mon Sep 17 00:00:00 2001 From: derekpierre Date: Mon, 27 Jun 2022 17:10:08 -0400 Subject: [PATCH] Update policy probationary period to August 31st, 2022. --- newsfragments/2952.misc.rst | 1 + nucypher/config/constants.py | 5 ++--- 2 files changed, 3 insertions(+), 3 deletions(-) create mode 100644 newsfragments/2952.misc.rst diff --git a/newsfragments/2952.misc.rst b/newsfragments/2952.misc.rst new file mode 100644 index 000000000..8975d3007 --- /dev/null +++ b/newsfragments/2952.misc.rst @@ -0,0 +1 @@ +Extends policy probationary period until August 31st, 2022. No policies may be created on the network beyond this date. diff --git a/nucypher/config/constants.py b/nucypher/config/constants.py index 4dbe0f16c..48e628669 100644 --- a/nucypher/config/constants.py +++ b/nucypher/config/constants.py @@ -16,12 +16,11 @@ along with nucypher. If not, see . """ +import os from collections import namedtuple from pathlib import Path -import os from appdirs import AppDirs - from maya import MayaDT import nucypher @@ -75,4 +74,4 @@ TEMPORARY_DOMAIN = ":temporary-domain:" # for use with `--dev` node runtimes NUCYPHER_EVENTS_THROTTLE_MAX_BLOCKS = 'NUCYPHER_EVENTS_THROTTLE_MAX_BLOCKS' # Probationary period -END_OF_POLICIES_PROBATIONARY_PERIOD = MayaDT.from_iso8601('2022-6-16T23:59:59.0Z') +END_OF_POLICIES_PROBATIONARY_PERIOD = MayaDT.from_iso8601("2022-08-31T23:59:59.0Z")