Skip to content

Commit

Permalink
Update license tag
Browse files Browse the repository at this point in the history
  • Loading branch information
ways committed Nov 29, 2024
1 parent 2c90331 commit dfb3c3d
Show file tree
Hide file tree
Showing 12 changed files with 36 additions and 3 deletions.
2 changes: 1 addition & 1 deletion sedr/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Main init file for sedr. Schemathesis related in schemat.py, others in utils.py."""

__author__ = "Lars Falk-Petersen"
__license__ = "GPL-3.0"
__license__ = "GPL-2.0"
__version__ = "v0.8.0"

import sys
Expand Down
3 changes: 3 additions & 0 deletions sedr/edreq12.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
"""EDR requirements."""

__author__ = "Lars Falk-Petersen"
__license__ = "GPL-2.0"

from collections.abc import Callable
import util

Expand Down
3 changes: 3 additions & 0 deletions sedr/ogcapi10.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
"""OGC API Common requirements."""

__author__ = "Lars Falk-Petersen"
__license__ = "GPL-2.0"

from collections.abc import Callable
import requests
import util
Expand Down
3 changes: 3 additions & 0 deletions sedr/preflight.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
"""Run a series of simple preflight checks before invoking schemathesis."""

__author__ = "Lars Falk-Petersen"
__license__ = "GPL-2.0"

import util
import requests
import json
Expand Down
3 changes: 3 additions & 0 deletions sedr/rodeoprofile10.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
"""rodeo-edr-profile requirements. See <http://rodeo-project.eu/rodeo-edr-profile>."""

__author__ = "Lars Falk-Petersen"
__license__ = "GPL-2.0"

import json
import requests
import util
Expand Down
5 changes: 4 additions & 1 deletion sedr/schemat.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
__author__ = "Lars Falk-Petersen"
__license__ = "GPL-2.0"

import os
import sys
import json
Expand All @@ -14,7 +17,7 @@


__author__ = "Lars Falk-Petersen"
__license__ = "GPL-3.0"
__license__ = "GPL-2.0"


# Globals
Expand Down
3 changes: 3 additions & 0 deletions sedr/test_edreq12.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
"""Unit tests for edreq12.py."""

__author__ = "Lars Falk-Petersen"
__license__ = "GPL-2.0"

import unittest
import json
import util
Expand Down
3 changes: 3 additions & 0 deletions sedr/test_init.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
"""Unit tests for __init__.py."""

__author__ = "Lars Falk-Petersen"
__license__ = "GPL-2.0"

import unittest
import subprocess
import sys
Expand Down
3 changes: 3 additions & 0 deletions sedr/test_ogcapi10.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
"""Unit tests for ogcapi10.py."""

__author__ = "Lars Falk-Petersen"
__license__ = "GPL-2.0"

import unittest
import json
import util
Expand Down
3 changes: 3 additions & 0 deletions sedr/test_rodeoprofile10.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
"""Unit tests for rodeoprofile10.py."""

__author__ = "Lars Falk-Petersen"
__license__ = "GPL-2.0"

import unittest
import json
import util
Expand Down
3 changes: 3 additions & 0 deletions sedr/test_schemat.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
"""Unit tests for schemat.py."""

__author__ = "Lars Falk-Petersen"
__license__ = "GPL-2.0"

import unittest
import util

Expand Down
5 changes: 4 additions & 1 deletion sedr/util.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
__author__ = "Lars Falk-Petersen"
__license__ = "GPL-2.0"

import sys
import logging
import requests
Expand All @@ -9,7 +12,7 @@
from rich.logging import RichHandler

__author__ = "Lars Falk-Petersen"
__license__ = "GPL-3.0"
__license__ = "GPL-2.0"

args = logger = None
test_functions: Dict[str, List[Callable]] = {
Expand Down

0 comments on commit dfb3c3d

Please sign in to comment.