diff --git a/.fmf/version b/.fmf/version deleted file mode 100644 index d00491f..0000000 --- a/.fmf/version +++ /dev/null @@ -1 +0,0 @@ -1 diff --git a/.gitignore b/.gitignore index 2b23595..81836c3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1 @@ -SOURCES/pytz-2019.3.tar.gz /pytz-2019.3.tar.gz diff --git a/gating.yaml b/gating.yaml deleted file mode 100644 index 648918d..0000000 --- a/gating.yaml +++ /dev/null @@ -1,6 +0,0 @@ ---- !Policy -product_versions: - - rhel-9 -decision_context: osci_compose_gate -rules: - - !PassingTestCaseRule {test_case_name: osci.brew-build.tier0.functional} diff --git a/plans.fmf b/plans.fmf deleted file mode 100644 index e6427de..0000000 --- a/plans.fmf +++ /dev/null @@ -1,4 +0,0 @@ -discover: - how: fmf -execute: - how: tmt diff --git a/python-38-test.patch b/python-38-test.patch deleted file mode 100644 index d59b3b9..0000000 --- a/python-38-test.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- a/pytz/tests/test_tzinfo.py~ 2019-07-26 08:38:47.000000000 -0500 -+++ b/pytz/tests/test_tzinfo.py 2019-07-26 08:40:12.751754602 -0500 -@@ -184,8 +184,11 @@ - # Python 3 introduced a new pickle protocol where numbers are stored in - # hexadecimal representation. Here we extract the pickle - # representation of the number for the current Python version. -- old_pickle_pattern = pickle.dumps(tz._utcoffset.seconds)[3:-1] -- new_pickle_pattern = pickle.dumps(new_utcoffset)[3:-1] -+ # -+ # Test protocol 3 on Python 3 and protocol 0 on Python 2. -+ protocol = (3 if sys.version_info >= (3,) else 0) -+ old_pickle_pattern = pickle.dumps(tz._utcoffset.seconds, protocol)[3:-1] -+ new_pickle_pattern = pickle.dumps(new_utcoffset, protocol)[3:-1] - hacked_p = p.replace(old_pickle_pattern, new_pickle_pattern) - - self.assertNotEqual(p, hacked_p) diff --git a/tests/smoke.fmf b/tests/smoke.fmf deleted file mode 100644 index 8dc1843..0000000 --- a/tests/smoke.fmf +++ /dev/null @@ -1,5 +0,0 @@ -test: python3 -c 'import pytz; assert str(pytz.utc.zone) == "UTC"' -framework: shell -require: -- python3-pytz -- python3