Re: Defining a Metadata keyname as a list?

2017-10-30 Thread Tal Liron
No, you cannot. The spec clearly defines metadata as a list of strings, and ARIA conforms. However, it's not hard to work around this. You can put the list of items you want as a string with some kind of delimiter (comma?) Or, you can do a numbering trick. You will have to parse it yourself.

Re: Deprecating formal support for Windows Platform

2017-10-30 Thread Tal Liron
My opinion is that we should keep Windows support. Beyond the fact that Azure is a popular cloud platform, testing on Windows keeps us honest for our Python work, making sure that we're writing platform-neutral code. The AppVeyor tests are broken for now, but I'm confident we will eventually fix

Defining a Metadata keyname as a list?

2017-10-30 Thread Steve Baillargeon
Hi The metadata section is defined as a map where each entry has a keyname and value. Example: : ... : Can I further define a metadata keyname as a list of values ? Example: : : [, ,...] Regards Steve B