This necessitates bumping the lowest version supported to avoid having
to maintain shims.
Change-Id: I6c324a5a7c2b7296a15aaa57fc8b98491099702c
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
This is now a Python 3-only package. We must temporarily cap Sphinx at
3.x or lower to get the build passing, but this can be addressed in a
follow-up shortly.
Change-Id: I1923d1dcd92cce349211dee5b01a3c365b151ead
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
Modern docs! This fixes a couple of issues introduced in the previous
patches and generally cleans up a lot of mess.
Change-Id: Ib964c16251bce12fe498b13455ed3515ef205916
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
This also allows us to removal lxml as an optional dependency.
Change-Id: I7ce0418012070677e36e41236487f3fabc0763a8
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
I didn't even know this was a thing. Needless to say, we can safely
remove this now.
Change-Id: I92c9c0fe99af61c438ab92a61bd8dd8bb192054b
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
As with turbogears, no one was using this in OpenStack and therefore we
can and should remove this adaptor.
Change-Id: I0d3942680c1156e57d70f334caea6b89590b46c7
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
No one in OpenStack that's still using this is using turbogears. Kill
it.
Change-Id: Ifeff1f40834289093dd997ce34fc3b42c3abbc13
Signed-off-by: Stephen Finucane <stephenfin@redhat.com>
Apparently this project uses templating for tox.ini..
Deprecate support for SQLAlchemy, since it has never worked in the first
place, and only officially supports ancient versions of SQLAlchemy.
Drops support for tgXX environments that do not do anything now.
Change-Id: Ia9b392f83ad4e9c1450a13c908813c7b6dbe74cb
Currently readthedocs is unable to build the documentation because not all the
dependencies gets installed.
This patch add the wsme requirements to the doc requirements, with the hope
it fixes the build on readthedocs.
Change-Id: Ib17d3e77ec1eb0d200a0c478663c7cbd2710aed3
Add an example in the documentation to show how to configure pyramid to
use the WSME extensions with cornice.
Closes-Bug: #1316888
Change-Id: Id1ad7149260205809de0b7f8ded51d45a8390880
Fix the documentation where it sais that wsme.signature takes a status
argument: the actual name of the argument is status_code.
Closes-Bug: #1455563
Change-Id: Ifa3abef5654e5b796285a467fe5e6bce248ef60c
pbr looks at the git tag for the version, so we do not
want a hard-coded value in the setup.cfg
pbr handles dev tagging automatically, so don't do
that via setup.cfg
pbr recursively finds packages, so we do not need to
list them explicitly in setup.cfg
Change-Id: I59a3e9d789c97f2cb9b6c487c553127af5a36b9f
attribute was added to the type for each attribute, its name being the
attribute name prefixed with '_'.
Starting with this version, a single attribute _wsme_dataholder is added to
the instance.
The motivation behind this change is to avoid adding too many attributes to
the object and potential collisions with user attributes.