{ "info": { "author": "Bogdan Mustiata", "author_email": "bogdan.mustiata@gmail.com", "bugtrack_url": null, "classifiers": [], "description": "vm master\n=========\n\nUpdates versions across multiple files.\n\nInstall\n-------\n\n.. code:: sh\n\n pip install vm\n\nUsage\n-----\n\nYou need a ``versions.json``, or a ``versions.yml`` where you can\nspecify for what you're tracking the versions, and what files to be\nupdated using glob patterns:\n\n.. code:: yaml\n\n germanium:\n version: 1.10.3\n files:\n README.*: \"^(germanium )(.*?)$\"\n setup.py: \"version='**VERSION**',\"\n doc/usage/index.adoc: \"^(= Germanium v)(.*?)$\"\n germanium/version.py: \"current = \\\"**VERSION**\\\"\"\n\nHelp:\n\n.. code:: text\n\n usage: version-manager [-h] [--display NAME] [--all]\n [--set NAME=VAL [NAME=VAL ...]] [--load FILE] [-t]\n [--ignore-missing-parents] [--version]\n\n Versions processor\n\n optional arguments:\n -h, --help show this help message and exit\n --display NAME, -d NAME\n Display the version of a single tracked version.\n --all, -a, --list Display all the tracked versions and their values.\n --set NAME=VAL [NAME=VAL ...], -s NAME=VAL [NAME=VAL ...]\n Set values overriding what's in the yml files.\n --load FILE, -l FILE Override versions from the given yml file.\n -t, --tag-name, --tag\n Get the current name to use in general tags. If the\n branch name can't be detected from the git repo, the\n $BRANCH_NAME environment variable will be used.\n --ignore-missing-parents\n Ignore missing parents, and simply don't patch the\n values. Upstream values are still being patched if\n existing.\n --version Show the currently installed program version (2.4.2)\n\nSpecifying Versions\n-------------------\n\nThe version value will be expanded using the shell if it contains a '$'\nor a '\\`', so you can have a version such as:\n\n.. code:: json\n\n \"description\": {\n \"version\": \"Built at $(date) on $(uname -n)\"\n }\n\nor YAML:\n\n.. code:: yaml\n\n description:\n version: Built at $(date) on $(uname -n)\n\nVersions can also refer to other version files, and extract properties\nfrom there, using the ``parent:`` notation in the version:\n\n.. code:: json\n\n \"germaniumdrivers\": {\n \"version\": \"parent:../germanium/@germaniumdrivers\"\n }\n\n.. code:: yaml\n\n germaniumdrivers:\n version: \"parent:../germanium/@germaniumdrivers\"\n\nThe path will point to the ``versions.json/yml`` file, or to the folder\nthat contains the ``versions.json/yml`` file, and after that fill will\nbe read and interpreted the ``germaniumdrivers`` version will be used.\n\nVersions can be also manually overriden from the command line, using the\n``--set`` or ``-s`` flag, for example:\n\n.. code:: sh\n\n version-manager -s germanium=2.0.8\n\nThis will ignore the value specified in the versions.yml file, and use\nthe specified one.\n\nFeature Branches\n----------------\n\nThe version can also be prefixed by ``upstream:``. In that case if the\ncurrently checked out branch name contains ``-x-``, or the exported\nBRANCH\\_NAME environment variable has that name, the version returned by\n``version-manager --tag`` will be used instead.\n\n.. code:: yaml\n\n germaniumdrivers:\n version: \"upstream:1.1.0\"\n\nAs long as the branch is not marked to contain cross feature branches\ndependencies with ``-x-`` it will return ``1.1.0``.\n\nThis also works for parent branches, so you can have:\n\n.. code:: yaml\n\n germaniumdrivers:\n version: \"parent:upstream:../germanium/@germaniumdrivers\"\n\nIf the branch name is for example: ``feature/UI-123-x-test-new-drivers``\nthe ``parent:`` value will not be read, and\n``0.1-feature_UI-123-x-test-new-drivers`` will be returned as the value.\n\nFile Matchers\n-------------\n\nThere are currently only three file matchers:\n\nRegExp File Matcher\n~~~~~~~~~~~~~~~~~~~\n\nIt is a RegExp that has two or three groups, and it will have the second\ngroup replaced to the matched version.\n\n**VERSION** File Matcher\n~~~~~~~~~~~~~~~~~~~~~~~~\n\nThis will construct a RegExp that will match exactly the given text,\nwith the ``**VERSION**`` being the second group.\n\nSo having a matcher such as:\n\n.. code:: json\n\n \"files\": {\n \"README\": \"This installs version **VERSION** of the product.\"\n }\n\nor yaml\n\n.. code:: yaml\n\n files:\n README: This installs version **VERSION** of the product.\n\nis equivalent with:\n\n.. code:: json\n\n \"files\": {\n \"README\": \"(This installs version )(.+?)( of the product\\\\.)\"\n }\n\nor yaml\n\n.. code:: yaml\n\n files:\n README: (This installs version )(.+?)( of the product\\\\.)\n\nIf the ``**``\\ s are replaced with ``^^`` at the beginning, or ``$$`` at\nthe end, they will act as RegExp anchors, equivalent to ``^`` and ``$``.\nIn case in the expression there is content before the ``^^``, or after\nthe ``$$``, the content is ignored.\n\nmaven: File Matcher\n~~~~~~~~~~~~~~~~~~~\n\nThis will construct a RegExp that will match:\n\n.. code:: text\n\n `(${m[1]}\\\\s*` +\n `${m[2]}\\\\s*` +\n `)(.*?)()`;\n\nIn order to specify the matcher, just use:\n\n.. code:: json\n\n {\"germanium\": {\n \"version\": \"2.0.0\",\n \"files\": {\n \"pom.xml\": \"maven:com.germaniumhq:germanium\"\n }\n }\n\nor yaml\n\n.. code:: yaml\n\n germanium:\n version: 2.0.0\n files:\n pom.xml: maven:com.germaniumhq:germanium\n\nMatcher Constraints\n-------------------\n\nIn order to make sure that the expressions are not replacing in too many\nplaces, constraints can be added to limit, or extend the matches.\n\nMatcher constraints are always active, and in case no constraint is\nspecified then the maximum replacement count is set to 1.\n\nMatch Count\n~~~~~~~~~~~\n\n.. code:: json\n\n {\n \"product\" : {\n \"version\": \"1.0\",\n \"files\": {\n \"README.md\": {\n \"match\": \"^(= Germanium v)(.*?)$\",\n \"count\": 2\n }\n }\n }\n }\n\nor yaml\n\n.. code:: yaml\n\n product:\n version: \"1.0\"\n files:\n README.md:\n match: ^(= Germanium v)(.*?)$\n count: 2\n\nThe count can be also ``0`` for no matches, or negative to indicate any\nnumber of matches is allowed.\n\nMultiple Matchers\n-----------------\n\nIn a single file, we can have multiple matchers as well, for example:\n\n.. code:: json\n\n {\n \"product\" : {\n \"version\": \"1.0\",\n \"files\": {\n \"README.md\": [\n \"^(= Germanium v)(.*?)$\",\n \"(Germanium )(\\\\d+\\\\.\\\\d+)()\"\n ]\n }\n }\n }\n\nFor each matcher that is added, if there is no match count specified,\nit's assumed that it will only match once in the file.\n\nOf course, constraints can be applied for both the full set of matchers:\n\n.. code:: json\n\n {\n \"product\" : {\n \"version\": \"1.0\",\n \"files\": {\n \"README.md\": {\n \"match\": [\n \"^(= Germanium v)(.*?)$\",\n \"(Germanium )(\\\\d+\\\\.\\\\d+)()\"\n ],\n \"count\": 3\n }\n }\n }\n }\n\nor even individual expressions:\n\n.. code:: json\n\n {\n \"product\" : {\n \"version\": \"1.0\",\n \"files\": {\n \"README.md\": {\n \"match\": [\n \"^(= Germanium v)(.*?)$\",\n {\n \"match\": \"(Germanium )(\\\\d+\\\\.\\\\d+)()\",\n \"count\": 2\n }\n ],\n \"count\": 3\n }\n }\n }\n }\n\nNotes\n-----\n\n1. Files are actually ``glob`` patterns, so you can match ``**/*.js``\n for example.\n2. The configuration files can be yml.\n3. ``vm`` will output the following error codes: 0 when no files are\n changed, 0 when files are changed successfuly, or a non zero error\n code in case of error.\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "", "keywords": "", "license": "BSD", "maintainer": "", "maintainer_email": "", "name": "vm", "package_url": "https://pypi.org/project/vm/", "platform": "", "project_url": "https://pypi.org/project/vm/", "project_urls": null, "release_url": "https://pypi.org/project/vm/2.5.0/", "requires_dist": null, "requires_python": "", "summary": "version_manager", "version": "2.5.0" }, "last_serial": 4611199, "releases": { "2.0.10": [ { "comment_text": "", "digests": { "md5": "5c6378770c9739617509c04f274d05af", "sha256": "8d8ac57929a375c96751185fa321fc7ef4084f7901f3f9bc5ec801f9a0448630" }, "downloads": -1, "filename": "vm-2.0.10.tar.gz", "has_sig": false, "md5_digest": "5c6378770c9739617509c04f274d05af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11917, "upload_time": "2018-07-25T19:03:59", "url": "https://files.pythonhosted.org/packages/1d/23/7acd253957c07f745622546975101bf2f55678aaa89674fd2ea0ee17fb05/vm-2.0.10.tar.gz" } ], "2.0.11": [ { "comment_text": "", "digests": { "md5": "cf9a5c135aaa17bc7227e92c1e9a837f", "sha256": "1a0b655ee19c5d1c916504e0a006d7b7765f3e3b42b518e2c69fecb671bcb0e7" }, "downloads": -1, "filename": "vm-2.0.11.tar.gz", "has_sig": false, "md5_digest": "cf9a5c135aaa17bc7227e92c1e9a837f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12435, "upload_time": "2018-07-25T20:38:12", "url": "https://files.pythonhosted.org/packages/7b/b6/83a86367611d90581ced172b7775b379b065d05bb141d5181b395332da2b/vm-2.0.11.tar.gz" } ], "2.0.12": [ { "comment_text": "", "digests": { "md5": "180e7d12db8a9622ff6e2f1d273d0751", "sha256": "63631a1cd48bb4e394d909cd0b4d6780504cd4a9760dfb5b5e764ec0a51771ba" }, "downloads": -1, "filename": "vm-2.0.12.tar.gz", "has_sig": false, "md5_digest": "180e7d12db8a9622ff6e2f1d273d0751", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12442, "upload_time": "2018-07-25T21:14:25", "url": "https://files.pythonhosted.org/packages/62/68/30d84a2fc4cc7021723eacd3d4563a3b2a7d7b8a7153d1bb497f29a497e8/vm-2.0.12.tar.gz" } ], "2.0.14": [ { "comment_text": "", "digests": { "md5": "e4147b68c92bcdeed6a0ce1dba271035", "sha256": "982932be9261fb0f7cc37f5d9ef6c526d8147b76cbfaa8d00d5e9b1ec1aceca4" }, "downloads": -1, "filename": "vm-2.0.14.tar.gz", "has_sig": false, "md5_digest": "e4147b68c92bcdeed6a0ce1dba271035", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12177, "upload_time": "2018-08-01T16:19:35", "url": "https://files.pythonhosted.org/packages/42/69/56ca635ea1d279fdd7ebb78a883987356c1a32b1a8ec9bbe033dffbf991e/vm-2.0.14.tar.gz" } ], "2.0.15": [ { "comment_text": "", "digests": { "md5": "66c6bd28e4412a742cb26a841d14a05c", "sha256": "9a278a9eb777282c4593aace206e876c2f85958a114ac176d7dce6217dac432f" }, "downloads": -1, "filename": "vm-2.0.15.tar.gz", "has_sig": false, "md5_digest": "66c6bd28e4412a742cb26a841d14a05c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12205, "upload_time": "2018-08-11T21:40:49", "url": "https://files.pythonhosted.org/packages/2d/a7/a51697a446cf0db36f1999ef16f0ec5b0c2c40e650c96a0aa350dd2cbc2f/vm-2.0.15.tar.gz" } ], "2.0.16": [ { "comment_text": "", "digests": { "md5": "2b98f12f7b949999643391753f856132", "sha256": "db0ab4298c3faad9aae0a217858f1d04d42fd1087f803927c3f00d4219db6bb9" }, "downloads": -1, "filename": "vm-2.0.16.tar.gz", "has_sig": false, "md5_digest": "2b98f12f7b949999643391753f856132", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11486, "upload_time": "2018-10-03T19:54:04", "url": "https://files.pythonhosted.org/packages/01/3d/8c68a9c5adff6c43df22a23ab0ead19aaafe1629bba9ff51ac4cd99a8d8e/vm-2.0.16.tar.gz" } ], "2.0.17": [ { "comment_text": "", "digests": { "md5": "524e82fd73b39bd7f6da90777e767c07", "sha256": "6786f7bb7125f3bd4e931c43d158ec0b39609f60f580637a15feada216849e83" }, "downloads": -1, "filename": "vm-2.0.17.tar.gz", "has_sig": false, "md5_digest": "524e82fd73b39bd7f6da90777e767c07", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11580, "upload_time": "2018-10-19T03:04:38", "url": "https://files.pythonhosted.org/packages/8a/a1/7f14e43716a812f0e00569c89557dfd7d8ef7b53115e69d59e0cae2a30f4/vm-2.0.17.tar.gz" } ], "2.0.18": [ { "comment_text": "", "digests": { "md5": "2524c3f1702c811e713715fdd54abfc8", "sha256": "c913266e666c1cbd3b9936be786f2e376a3b9a8d9c065265b5a55f6bdea5eb1d" }, "downloads": -1, "filename": "vm-2.0.18.tar.gz", "has_sig": false, "md5_digest": "2524c3f1702c811e713715fdd54abfc8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10815, "upload_time": "2018-10-19T04:15:29", "url": "https://files.pythonhosted.org/packages/25/d4/d58a513115e07698e64fe46ec72917de1d4df7eecad882d053fac331cfd6/vm-2.0.18.tar.gz" } ], "2.0.19": [ { "comment_text": "", "digests": { "md5": "63bf8fcc9283c5024fef7b492e87a34d", "sha256": "8ca64a9db47b4b2e782190fe67c277acb6be3b807833fb5b4134d43aaab6254d" }, "downloads": -1, "filename": "vm-2.0.19.tar.gz", "has_sig": false, "md5_digest": "63bf8fcc9283c5024fef7b492e87a34d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10857, "upload_time": "2018-10-19T07:22:55", "url": "https://files.pythonhosted.org/packages/a4/aa/f78f6cf7f340d259b147897e4d156ede8b813bebfe69da1856288fe318e4/vm-2.0.19.tar.gz" } ], "2.0.20": [ { "comment_text": "", "digests": { "md5": "d47eb8d6c1bed588707d1fa05327068a", "sha256": "7cd7ff5ca0751b707a82fce4764c08077a1b64b72ae307566ed7aa8ba34932c9" }, "downloads": -1, "filename": "vm-2.0.20.tar.gz", "has_sig": false, "md5_digest": "d47eb8d6c1bed588707d1fa05327068a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10928, "upload_time": "2018-10-26T11:37:45", "url": "https://files.pythonhosted.org/packages/39/d7/53d499c0a0fb3ab44026db100bdaacedff4fd10efa907f035a9c68f03e91/vm-2.0.20.tar.gz" } ], "2.0.21": [ { "comment_text": "", "digests": { "md5": "419328ea8ae5a4930dce1a203de213b0", "sha256": "461ef33dc6863855fc660f892cdd8510a0552dddc4657fd6e2d6226da641479d" }, "downloads": -1, "filename": "vm-2.0.21.tar.gz", "has_sig": false, "md5_digest": "419328ea8ae5a4930dce1a203de213b0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10935, "upload_time": "2018-10-26T12:28:43", "url": "https://files.pythonhosted.org/packages/99/43/7b80c7961491c2b359ab0c2bdcbbc72a5b39b1b6d983a77c04b39cd07522/vm-2.0.21.tar.gz" } ], "2.0.22": [ { "comment_text": "", "digests": { "md5": "a802c5468c03a33d65138a5dca0cd10b", "sha256": "dbb148ac3c0f9945633228a996f72ffc9fb5cd43a811e288653b7ff60fd63478" }, "downloads": -1, "filename": "vm-2.0.22.tar.gz", "has_sig": false, "md5_digest": "a802c5468c03a33d65138a5dca0cd10b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10953, "upload_time": "2018-11-23T10:06:32", "url": "https://files.pythonhosted.org/packages/b8/18/332d09edd172b7eed1f67f5d6bfa91a07f3cc41f4239d7884c8d5977883f/vm-2.0.22.tar.gz" } ], "2.0.4": [ { "comment_text": "", "digests": { "md5": "a8e620b8ae956ad89083311fb904a208", "sha256": "356ce01193563bbd7abf9f2e04c191fe77e114495740825da2cdb65f49f6d75c" }, "downloads": -1, "filename": "vm-2.0.4.tar.gz", "has_sig": false, "md5_digest": "a8e620b8ae956ad89083311fb904a208", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10854, "upload_time": "2018-07-25T16:26:32", "url": "https://files.pythonhosted.org/packages/78/93/edcb02487422449cacfcc068794d61dc289228505666bfc022e751475efe/vm-2.0.4.tar.gz" } ], "2.0.5": [ { "comment_text": "", "digests": { "md5": "48ef4712d96dcca84cb44e1250ea6ea8", "sha256": "0c8dedeee59db695ce79ff18784e29e5f8f0a8ceded5e644c6fb85f69b2e9837" }, "downloads": -1, "filename": "vm-2.0.5.tar.gz", "has_sig": false, "md5_digest": "48ef4712d96dcca84cb44e1250ea6ea8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11874, "upload_time": "2018-07-25T17:54:41", "url": "https://files.pythonhosted.org/packages/92/2b/0a0471138cf06807a1aa94b8f4c069d71855e6e834b90e1363a70892664a/vm-2.0.5.tar.gz" } ], "2.0.6": [ { "comment_text": "", "digests": { "md5": "0c132a53286329f93465de1504c420fc", "sha256": "cb99f42ef925f385ab6cc77765a04f5de8c134fb44765b62842eafea6213f079" }, "downloads": -1, "filename": "vm-2.0.6.tar.gz", "has_sig": false, "md5_digest": "0c132a53286329f93465de1504c420fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11859, "upload_time": "2018-07-25T18:06:39", "url": "https://files.pythonhosted.org/packages/a1/ef/e7c1e99e57023442aa7bb1c5526f0a9bdb5fd3941873240661441161e1d4/vm-2.0.6.tar.gz" } ], "2.0.7": [ { "comment_text": "", "digests": { "md5": "54efab7df3b497a2241c752e61918f3e", "sha256": "0041bb106c8da794c561d5b6e650d7687f04acd16f880bf8684f22db9eec60ba" }, "downloads": -1, "filename": "vm-2.0.7.tar.gz", "has_sig": false, "md5_digest": "54efab7df3b497a2241c752e61918f3e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11856, "upload_time": "2018-07-25T18:08:43", "url": "https://files.pythonhosted.org/packages/1a/f0/81200cda5cdc6eb8b16b17a651fa6d0839137de6be8d35c812f509452076/vm-2.0.7.tar.gz" } ], "2.0.8": [ { "comment_text": "", "digests": { "md5": "f891147526c89b8c02d19bbde2fb826d", "sha256": "4a30210c73a1a39793a4db855996be32e3396aeadd106339cf61e6216123a3cc" }, "downloads": -1, "filename": "vm-2.0.8.tar.gz", "has_sig": false, "md5_digest": "f891147526c89b8c02d19bbde2fb826d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11907, "upload_time": "2018-07-25T18:19:33", "url": "https://files.pythonhosted.org/packages/d7/70/39bb8a1bccc84712e12640415b4726c588263dbbf2e2398d3a0a66c549c5/vm-2.0.8.tar.gz" } ], "2.0.9": [ { "comment_text": "", "digests": { "md5": "d77ea42f1538f054e181ddd1307e7a2c", "sha256": "d703a3a08b4e1f55ee96244f01af73aa80a563466be1828b1c70d8e04d005e4d" }, "downloads": -1, "filename": "vm-2.0.9.tar.gz", "has_sig": false, "md5_digest": "d77ea42f1538f054e181ddd1307e7a2c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11902, "upload_time": "2018-07-25T18:22:35", "url": "https://files.pythonhosted.org/packages/07/54/e37956ca67355dddb71e497a538f70dbbe00b6ae33d0658e4b0d2c9a6686/vm-2.0.9.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "b059d8f998d71959a7ec8a09f2556b0e", "sha256": "bfa5e602f3ddcfac3a8c2f7acfa87849dd18f8f3ae89da19e4b896af52a6b3f0" }, "downloads": -1, "filename": "vm-2.1.0.tar.gz", "has_sig": false, "md5_digest": "b059d8f998d71959a7ec8a09f2556b0e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10949, "upload_time": "2018-11-23T15:25:20", "url": "https://files.pythonhosted.org/packages/89/2f/2fd6cf38c5ac0915d0fff3586c1a5a435aaed722fe374be1c96f5c9793fb/vm-2.1.0.tar.gz" } ], "2.2.21": [ { "comment_text": "", "digests": { "md5": "4973623da6cb513cb815d68ee3ea1e4b", "sha256": "1f8837506f1334e42c74b1b1ca083d068e8bc7fa145106a829065b3c55f6674c" }, "downloads": -1, "filename": "vm-2.2.21.tar.gz", "has_sig": false, "md5_digest": "4973623da6cb513cb815d68ee3ea1e4b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10940, "upload_time": "2018-10-26T12:27:29", "url": "https://files.pythonhosted.org/packages/b0/91/ae9e9ff581f20f653fb1e6564fe7b4a79363611b7f7bc36923e527fbd42a/vm-2.2.21.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "be9ab8c5da53a2251dbfcffa7a8cca7f", "sha256": "4b1d49cc1d21de4998380a72c49578cc9f8736a34f55e09098d8f1c0bf8fe282" }, "downloads": -1, "filename": "vm-2.3.0.tar.gz", "has_sig": false, "md5_digest": "be9ab8c5da53a2251dbfcffa7a8cca7f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10953, "upload_time": "2018-11-24T04:18:53", "url": "https://files.pythonhosted.org/packages/36/db/710528005521bf002341162692e54920cbd413a9da0a3ea1105f53cf1c8f/vm-2.3.0.tar.gz" } ], "2.3.2": [ { "comment_text": "", "digests": { "md5": "dc87f0eb86e5bc00236e3dcb682fd076", "sha256": "2a43c28f83076f70bac53d7ada3416bba55fff419351ec271cc9cf7051cca7e0" }, "downloads": -1, "filename": "vm-2.3.2.tar.gz", "has_sig": false, "md5_digest": "dc87f0eb86e5bc00236e3dcb682fd076", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12364, "upload_time": "2018-11-24T04:46:57", "url": "https://files.pythonhosted.org/packages/bc/06/dbfc7c17b0f1e65c14bec0069b307192c8f1ffe5b0f9793538a2011e3397/vm-2.3.2.tar.gz" } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "fa3932c2e72df2502f68fb493bfff89b", "sha256": "f13c6f6e749750d3bcdb0adac4a246f5c00ed69a32b349d880514159458b692e" }, "downloads": -1, "filename": "vm-2.4.0.tar.gz", "has_sig": false, "md5_digest": "fa3932c2e72df2502f68fb493bfff89b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12175, "upload_time": "2018-12-06T04:41:11", "url": "https://files.pythonhosted.org/packages/91/84/15cf5f2b03e60692b0b584073fb0f8c279acdea0ae492cf3b745315dd73d/vm-2.4.0.tar.gz" } ], "2.4.1": [ { "comment_text": "", "digests": { "md5": "ae7458a696807a21afa4d293923d0085", "sha256": "f468a5f304eea3801c5aae83984b8db02c206c0cc0ada72bd14e7f52daffb59f" }, "downloads": -1, "filename": "vm-2.4.1.tar.gz", "has_sig": false, "md5_digest": "ae7458a696807a21afa4d293923d0085", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12157, "upload_time": "2018-12-06T08:23:22", "url": "https://files.pythonhosted.org/packages/cf/2c/678e825da7e8290c8678894223c01aa6986141fb1c4d369669bb2f84f0ab/vm-2.4.1.tar.gz" } ], "2.4.2": [ { "comment_text": "", "digests": { "md5": "a363be5fe2f88e031a66c572db9aded0", "sha256": "10f5986e468325cfb9298324f025a142dd9bb32f94793d22f8e993d6bd9b0f43" }, "downloads": -1, "filename": "vm-2.4.2.tar.gz", "has_sig": false, "md5_digest": "a363be5fe2f88e031a66c572db9aded0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12094, "upload_time": "2018-12-07T03:06:34", "url": "https://files.pythonhosted.org/packages/ce/ab/721340f0aac1f2dc21f1b7e47909b64cafe9ad648fdbb3c90ec48ba00453/vm-2.4.2.tar.gz" } ], "2.5.0": [ { "comment_text": "", "digests": { "md5": "cfbbf93d9293d7db1191c5557d9c61e3", "sha256": "402a6dbf44a2eed6c6fc656011bbdd243b3b7b959403761e071df2b7015f5174" }, "downloads": -1, "filename": "vm-2.5.0.tar.gz", "has_sig": false, "md5_digest": "cfbbf93d9293d7db1191c5557d9c61e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12484, "upload_time": "2018-12-18T08:07:32", "url": "https://files.pythonhosted.org/packages/35/1f/2de41b2fca048ac3a0411209e284c85e60fc52d3aae5fd9efe624be13af6/vm-2.5.0.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "cfbbf93d9293d7db1191c5557d9c61e3", "sha256": "402a6dbf44a2eed6c6fc656011bbdd243b3b7b959403761e071df2b7015f5174" }, "downloads": -1, "filename": "vm-2.5.0.tar.gz", "has_sig": false, "md5_digest": "cfbbf93d9293d7db1191c5557d9c61e3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 12484, "upload_time": "2018-12-18T08:07:32", "url": "https://files.pythonhosted.org/packages/35/1f/2de41b2fca048ac3a0411209e284c85e60fc52d3aae5fd9efe624be13af6/vm-2.5.0.tar.gz" } ] }