Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

make sure %license is SPDX compatible #794

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -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
Expand Down
5 changes: 4 additions & 1 deletion fedora/python-ogr.spec
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -52,6 +52,9 @@ rm -rf %{srcname}.egg-info


%changelog
* Fri Aug 04 2023 Tomas Tomecek <ttomecek@redhat.com> - 0.45.0-2
- Confirm License is SPDX compatible.

* Mon Jun 05 2023 Packit Team <hello@packit.dev> - 0.45.0-1
- New upstream release 0.45.0

Expand Down
5 changes: 3 additions & 2 deletions tests/integration/pagure/test_project_token.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down