Officially remove FormAlchemy dependency (yay!)
This commit is contained in:
parent
cb8db266cd
commit
33e345f4ae
|
@ -41,8 +41,6 @@ extensions = [
|
||||||
]
|
]
|
||||||
|
|
||||||
intersphinx_mapping = {
|
intersphinx_mapping = {
|
||||||
# TODO: Add this back, when the FA site is back online...
|
|
||||||
#'formalchemy': ('http://docs.formalchemy.org/formalchemy/', None),
|
|
||||||
'webhelpers2': ('https://webhelpers2.readthedocs.io/en/latest/', None),
|
'webhelpers2': ('https://webhelpers2.readthedocs.io/en/latest/', None),
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -70,10 +70,6 @@ requires = [
|
||||||
# TODO: Remove this restriction.
|
# TODO: Remove this restriction.
|
||||||
'FormEncode<=1.2.99', # 1.2.4 1.2.6
|
'FormEncode<=1.2.99', # 1.2.4 1.2.6
|
||||||
|
|
||||||
# FormAlchemy 1.5 supports Python 3 but is being a little aggressive about
|
|
||||||
# it, for our needs...We'll have to stick with 1.4 for now.
|
|
||||||
u'FormAlchemy<=1.4.99', # 1.4.3
|
|
||||||
|
|
||||||
# TODO: Pyramid 1.9 looks like it breaks us..? playing it safe for now..
|
# TODO: Pyramid 1.9 looks like it breaks us..? playing it safe for now..
|
||||||
'pyramid<1.9', # 1.3b2 1.8.3
|
'pyramid<1.9', # 1.3b2 1.8.3
|
||||||
|
|
||||||
|
|
|
@ -37,7 +37,6 @@ from rattail.exceptions import ConfigurationError
|
||||||
from rattail.db.config import get_engines, configure_versioning
|
from rattail.db.config import get_engines, configure_versioning
|
||||||
from rattail.db.types import GPCType
|
from rattail.db.types import GPCType
|
||||||
|
|
||||||
import formalchemy as fa
|
|
||||||
from pyramid.config import Configurator
|
from pyramid.config import Configurator
|
||||||
from pyramid.authentication import SessionAuthenticationPolicy
|
from pyramid.authentication import SessionAuthenticationPolicy
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue