diff options
| author | Dmitry Tantsur <divius.inside@gmail.com> | 2019-03-12 11:51:45 +0100 |
|---|---|---|
| committer | Dmitry Tantsur <divius.inside@gmail.com> | 2019-03-12 12:20:36 +0100 |
| commit | f054ccbf4ddea343a441c925382d96edc3237c08 (patch) | |
| tree | ae013bb3bcfba1f8598370ef602b9da328223422 | |
| parent | 3957f12aa2f9552197806bc7efef78ed73b2a82d (diff) | |
| download | wsme-f054ccbf4ddea343a441c925382d96edc3237c08.tar.gz | |
Move CI jobs in-tree, add Python 3.6 and 3.7
Fixes a pep8 error that managed to sneak in.
Change-Id: I90b91a69537934fd279bda808aae2d2c653b17e1
| -rw-r--r-- | .zuul.yaml | 5 | ||||
| -rw-r--r-- | setup.cfg | 3 | ||||
| -rw-r--r-- | wsme/api.py | 2 |
3 files changed, 9 insertions, 1 deletions
diff --git a/.zuul.yaml b/.zuul.yaml new file mode 100644 index 0000000..f42aa59 --- /dev/null +++ b/.zuul.yaml @@ -0,0 +1,5 @@ +- project: + templates: + - openstack-python-jobs + - openstack-python36-jobs + - openstack-python37-jobs @@ -17,7 +17,10 @@ classifier = Operating System :: OS Independent Programming Language :: Python Programming Language :: Python :: 2.7 + Programming Language :: Python :: 3 Programming Language :: Python :: 3.5 + Programming Language :: Python :: 3.6 + Programming Language :: Python :: 3.7 Programming Language :: Python :: Implementation :: CPython Programming Language :: Python :: Implementation :: PyPy License :: OSI Approved :: MIT License diff --git a/wsme/api.py b/wsme/api.py index e5fe7c6..67263a0 100644 --- a/wsme/api.py +++ b/wsme/api.py @@ -179,7 +179,7 @@ class signature(object): fd.return_type = self.return_type fd.set_options(**self.options) if self.arg_types: - fd.set_arg_types(argspec, self.arg_types) + fd.set_arg_types(argspec, self.arg_types) return func |
