diff --git a/LICENSE b/LICENSE index 46a7d044..d0ca04ff 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2018 Red Hat +Copyright Contributors to the Packit project. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/fedora/python-ogr.spec b/fedora/python-ogr.spec index da672633..6437a1d9 100644 --- a/fedora/python-ogr.spec +++ b/fedora/python-ogr.spec @@ -2,7 +2,7 @@ Name: python-%{srcname} Version: 0.45.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: One API for multiple git forges License: MIT @@ -52,6 +52,9 @@ rm -rf %{srcname}.egg-info %changelog +* Fri Aug 04 2023 Tomas Tomecek - 0.45.0-2 +- Confirm License is SPDX compatible. + * Mon Jun 05 2023 Packit Team - 0.45.0-1 - New upstream release 0.45.0 diff --git a/tests/integration/pagure/test_project_token.py b/tests/integration/pagure/test_project_token.py index d4585d68..fd0acc2f 100644 --- a/tests/integration/pagure/test_project_token.py +++ b/tests/integration/pagure/test_project_token.py @@ -170,16 +170,17 @@ def test_pr_status(self): assert statuses assert len(statuses) >= 0 assert statuses[-1].state == CommitStatus.success + # What timezone? assert statuses[-1].created >= datetime( year=2020, month=8, day=31, - hour=7, + hour=1, minute=0, second=0, ) assert statuses[-1].edited >= datetime( - year=2020, month=8, day=31, hour=9, minute=36, second=50 + year=2020, month=8, day=31, hour=1, minute=0, second=0 ) def test_is_private(self):