Dropped Python 3.8 support.

This commit is contained in:
Cédric Bonhomme 2023-12-31 00:38:32 +01:00
parent 29322e759a
commit a3dd6be618
No known key found for this signature in database
GPG key ID: A1CB94DE57B7A70D
11 changed files with 189 additions and 70 deletions

View file

@ -1,10 +1,5 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from . import red
from . import exifHeader
from . import lsb
from . import steganalysis
from . import exifHeader, lsb, red, steganalysis
__all__ = ["red", "exifHeader", "lsb", "steganalysis"]

View file

@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from .exifHeader import hide, reveal

View file

@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from .lsb import hide, reveal

View file

@ -1,5 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from .red import hide, reveal

View file

@ -1,2 +1 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-