diff --git a/servefile/servefile.py b/servefile/servefile.py index d830d5d..8775e89 100755 --- a/servefile/servefile.py +++ b/servefile/servefile.py @@ -11,7 +11,6 @@ __version__ = '0.5.3' import argparse import base64 -import cgi import datetime import io import mimetypes @@ -23,6 +22,7 @@ from subprocess import Popen, PIPE import sys import tempfile import time +import warnings # fix imports for python2/python3 try: @@ -43,6 +43,11 @@ try: except ImportError: pass +with warnings.catch_warnings(): + warnings.filterwarnings("ignore", category=DeprecationWarning) + # scheduled for removal in python3.13, used for FieldStorage + import cgi + def getDateStrNow(): """ Get the current time formatted for HTTP header """ diff --git a/setup.py b/setup.py index ebad996..1b2d6ef 100755 --- a/setup.py +++ b/setup.py @@ -42,6 +42,8 @@ setup( 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'Topic :: Communications', 'Topic :: Communications :: File Sharing', 'Topic :: Internet',