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

PEP594 deprecated cgi, will be removed on py3.13 #12

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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 setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import sys
py_version = sys.version_info[:2]

DEPENDENCIES = ['formencode>=1.3.0a1']
DEPENDENCIES = ['formencode>=1.3.0a1', 'multipart']
TESTS_DEPENDENCIES = ['sieve']

if py_version == (3, 2):
Expand Down
2 changes: 1 addition & 1 deletion sprox/sa/provider.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
from sprox.sa.support import PropertyLoader, resolve_entity, Binary, LargeBinary, mapped_classes, mapped_class

from sprox.iprovider import IProvider
from cgi import FieldStorage
from multipart import MultipartPart as FieldStorage
from datetime import datetime, date, timedelta
from warnings import warn

Expand Down
2 changes: 1 addition & 1 deletion sprox/test/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from sqlalchemy import *
from sqlalchemy.orm import *
from .model import *
from cgi import FieldStorage
from multipart import MultipartPart as FieldStorage
from sprox._compat import unicode_text

try:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_saormprovider.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
from nose.tools import raises, eq_
import datetime

from cgi import FieldStorage
from multipart import MultipartPart as FieldStorage

try:
from io import BytesIO
Expand Down