{ "info": { "author": "Zuse Institute Berlin", "author_email": "scip@zib.de", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: Education", "Intended Audience :: Science/Research", "License :: OSI Approved :: MIT License", "Programming Language :: Cython", "Programming Language :: Python :: 2", "Programming Language :: Python :: 3", "Topic :: Scientific/Engineering :: Mathematics" ], "description": "PySCIPOpt\n=========\n\nThis project provides an interface from Python to the [SCIP Optimization\nSuite](http://scip.zib.de).\n\n[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/PySCIPOpt/Lobby)\n[![PySCIPOpt on PyPI](https://img.shields.io/pypi/v/pyscipopt.svg)](https://pypi.python.org/pypi/pyscipopt)\n[![TravisCI Status](https://travis-ci.org/SCIP-Interfaces/PySCIPOpt.svg?branch=master)](https://travis-ci.org/SCIP-Interfaces/PySCIPOpt)\n[![AppVeyor Status](https://ci.appveyor.com/api/projects/status/fsa896vkl8be79j9/branch/master?svg=true)](https://ci.appveyor.com/project/mattmilten/pyscipopt/branch/master)\n\n\nDocumentation\n-------------\n\nPlease consult the [online documentation](http://scip-interfaces.github.io/PySCIPOpt/docs/html) or use the `help()` function directly in Python or `?` in IPython/Jupyter.\n\nSee [CHANGELOG.md](CHANGELOG.md) for added, removed or fixed functionality.\n\nInstallation\n------------\n\nSee [INSTALL.md](INSTALL.md) for instructions.\n\nBuilding and solving a model\n----------------------------\n\nThere are several [examples](examples/finished) and\n[tutorials](examples/tutorial). These display some functionality of the\ninterface and can serve as an entry point for writing more complex code.\nYou might also want to have a look at this article about PySCIPOpt:\n. The\nfollowing steps are always required when using the interface:\n\n1) It is necessary to import python-scip in your code. This is achieved\n by including the line\n\n``` {.sourceCode .python}\nfrom pyscipopt import Model\n```\n\n2) Create a solver instance.\n\n``` {.sourceCode .python}\nmodel = Model(\"Example\") # model name is optional\n```\n\n3) Access the methods in the `scip.pyx` file using the solver/model\n instance `model`, e.g.:\n\n``` {.sourceCode .python}\nx = model.addVar(\"x\")\ny = model.addVar(\"y\", vtype=\"INTEGER\")\nmodel.setObjective(x + y)\nmodel.addCons(2*x - y*y >= 0)\nmodel.optimize()\nsol = model.getBestSol()\nprint(\"x: {}\".format(sol[x]))\nprint(\"y: {}\".format(sol[y]))\n```\n\nWriting new plugins\n-------------------\n\nThe Python interface can be used to define custom plugins to extend the\nfunctionality of SCIP. You may write a pricer, heuristic or even\nconstraint handler using pure Python code and SCIP can call their\nmethods using the callback system. Every available plugin has a base\nclass that you need to extend, overwriting the predefined but empty\ncallbacks. Please see `test_pricer.py` and `test_heur.py` for two simple\nexamples.\n\nPlease notice that in most cases one needs to use a `dictionary` to\nspecify the return values needed by SCIP.\n\nExtending the interface\n-----------------------\n\nPySCIPOpt already covers many of the SCIP callable library methods. You\nmay also extend it to increase the functionality of this interface. The\nfollowing will provide some directions on how this can be achieved:\n\nThe two most important files in PySCIPOpt are the `scip.pxd` and\n`scip.pyx`. These two files specify the public functions of SCIP that\ncan be accessed from your python code.\n\nTo make PySCIPOpt aware of the public functions you would like to\naccess, you must add them to `scip.pxd`. There are two things that must\nbe done in order to properly add the functions:\n\n1) Ensure any `enum`s, `struct`s or SCIP variable types are included in\n `scip.pxd`
\n2) Add the prototype of the public function you wish to access to\n `scip.pxd`\n\nAfter following the previous two steps, it is then possible to create\nfunctions in python that reference the SCIP public functions included in\n`scip.pxd`. This is achieved by modifying the `scip.pyx` file to add the\nfunctionality you require.\n\nWe are always happy to accept pull request containing patches or\nextensions!\n\nPlease have a look at our [contribution guidelines](CONTRIBUTING.md).\n\nGotchas\n-------\n\n### Ranged constraints\n\nWhile ranged constraints of the form\n\n``` {.sourceCode .}\nlhs <= expression <= rhs\n```\n\nare supported, the Python syntax for [chained\ncomparisons](https://docs.python.org/3.5/reference/expressions.html#comparisons)\ncan't be hijacked with operator overloading. Instead, parenthesis must\nbe used, e.g.,\n\n``` {.sourceCode .}\nlhs <= (expression <= rhs)\n```\n\nAlternatively, you may call `model.chgRhs(cons, newrhs)` or\n`model.chgLhs(cons, newlhs)` after the single-sided constraint has been\ncreated.\n\n### Variable objects\n\nYou can't use `Variable` objects as elements of `set`s or as keys of\n`dict`s. They are not hashable and comparable. The issue is that\ncomparisons such as `x == y` will be interpreted as linear constraints,\nsince `Variable`s are also `Expr` objects.\n\n### Dual values\n\nWhile PySCIPOpt supports access to the dual values of a solution, there\nare some limitations involved:\n\n- Can only be used when presolving and propagation is disabled to\n ensure that the LP solver - which is providing the dual\n information - actually solves the unmodified problem.\n- Heuristics should also be disabled to avoid that the problem is\n solved before the LP solver is called.\n- There should be no bound constraints, i.e., constraints with only\n one variable. This can cause incorrect values as explained in\n [\\#136](https://github.com/SCIP-Interfaces/PySCIPOpt/issues/136)\n\nTherefore, you should use the following settings when trying to work\nwith dual information:\n\n``` {.sourceCode .python}\nmodel.setPresolve(pyscipopt.SCIP_PARAMSETTING.OFF)\nmodel.setHeuristics(pyscipopt.SCIP_PARAMSETTING.OFF)\nmodel.disablePropagation()\n```", "description_content_type": "text/markdown", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/SCIP-Interfaces/PySCIPOpt", "keywords": "", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "PySCIPOpt", "package_url": "https://pypi.org/project/PySCIPOpt/", "platform": "", "project_url": "https://pypi.org/project/PySCIPOpt/", "project_urls": { "Homepage": "https://github.com/SCIP-Interfaces/PySCIPOpt" }, "release_url": "https://pypi.org/project/PySCIPOpt/2.2.1/", "requires_dist": null, "requires_python": "", "summary": "Python interface and modeling environment for SCIP", "version": "2.2.1" }, "last_serial": 5842958, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "cc1c28b0f295028cb2201e5f232fc473", "sha256": "10bf8d3f1c3e8be02bfff4e9d18fa898cf08df72505ace3a7685b1669bffd7b9" }, "downloads": -1, "filename": "pyscipopt-1.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "cc1c28b0f295028cb2201e5f232fc473", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 254049, "upload_time": "2017-03-10T17:09:32", "url": "https://files.pythonhosted.org/packages/0c/81/c140f608502efc6040312c6dd0ba0c4a98116ebf1508081fc2efb9656481/pyscipopt-1.0-cp36-cp36m-win_amd64.whl" } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "b4e24e1aa6b7a8e69cfbb67023d108a8", "sha256": "415b430aaf76eba3239b294aab232dd32a746ed631aa2d3b702ea018972265fe" }, "downloads": -1, "filename": "PySCIPOpt-1.0.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "b4e24e1aa6b7a8e69cfbb67023d108a8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 261228, "upload_time": "2017-03-10T17:09:35", "url": "https://files.pythonhosted.org/packages/d3/0e/31f3231c7fce9af6ed12f456b78852a320d55404434dbb80d42a2a71a2ab/PySCIPOpt-1.0.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f508ee9ac702da8fa40af72ab890e6e3", "sha256": "65e8b25a1060df65fd059ef649b58e9456d807d0ab9dcd513cc181fe61105201" }, "downloads": -1, "filename": "PySCIPOpt-1.0.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "f508ee9ac702da8fa40af72ab890e6e3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 254331, "upload_time": "2017-03-09T11:20:40", "url": "https://files.pythonhosted.org/packages/f7/66/5fd7332f7746e775288d96eedc7c332e66334e70e70f298dbe2ca6f882f7/PySCIPOpt-1.0.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "58dd622a4afe12698d4b11031870ef8c", "sha256": "f09bf88a551cdc4775c250c22cf38607eaa4bcf7d7ce94029aed3219b4d764d5" }, "downloads": -1, "filename": "PySCIPOpt-1.0.0-py2.7-linux-x86_64.egg", "has_sig": false, "md5_digest": "58dd622a4afe12698d4b11031870ef8c", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1197048, "upload_time": "2017-03-09T11:14:29", "url": "https://files.pythonhosted.org/packages/b3/bb/eb1adc0bdb7a2dfb73ec249a1fac3b3719eb36d4dc051537f7255993c88e/PySCIPOpt-1.0.0-py2.7-linux-x86_64.egg" }, { "comment_text": "", "digests": { "md5": "15b475d1496ec201874fb388c43e2918", "sha256": "132ce9991f10f2d0e197bd4dfdc17a3f3cfcc2cb4e67cca8da1ff17f028afe27" }, "downloads": -1, "filename": "PySCIPOpt-1.0.0.tar.gz", "has_sig": false, "md5_digest": "15b475d1496ec201874fb388c43e2918", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 270561, "upload_time": "2017-03-09T11:14:42", "url": "https://files.pythonhosted.org/packages/e0/e0/b6513fd4d6a96785ae8f54e02ca146948943c37751cfe8f48d8d3ea19fd5/PySCIPOpt-1.0.0.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "2009b1685bdc8254235a030d8a9b9522", "sha256": "6d17d223a7892fce02d20190fb03cd663bd0bc309896fd83de83370b9790937f" }, "downloads": -1, "filename": "PySCIPOpt-1.0.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "2009b1685bdc8254235a030d8a9b9522", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 271281, "upload_time": "2017-03-10T17:17:09", "url": "https://files.pythonhosted.org/packages/fe/45/255e7c6a5d18963649e6b37003c88b4f7bec5db373c57a868567702c6968/PySCIPOpt-1.0.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "42307ccfdde4ebd9c5cc185db573bb4a", "sha256": "45ef00e9bb7575ff59f81a707d67a225d5055505762c0e9168042d1ac7ecafe6" }, "downloads": -1, "filename": "PySCIPOpt-1.0.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "42307ccfdde4ebd9c5cc185db573bb4a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 263344, "upload_time": "2017-03-10T17:18:51", "url": "https://files.pythonhosted.org/packages/62/43/6a52da83213245145d97eec56622a57bc17f35f8d9d3430b8be0c81cd5ff/PySCIPOpt-1.0.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7ef6b39e0a8db5bed46908dc000c882e", "sha256": "d8fd6833f3ca91c53ab20e277829c4d0d4d8b50a0348b37856b3aae0da0251c3" }, "downloads": -1, "filename": "PySCIPOpt-1.0.1.tar.gz", "has_sig": false, "md5_digest": "7ef6b39e0a8db5bed46908dc000c882e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 280188, "upload_time": "2017-03-10T17:18:28", "url": "https://files.pythonhosted.org/packages/44/8e/c2918c04ee21b0027ad19932a45e0dcb749badbb626affcf5e430bc080f7/PySCIPOpt-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "abb2b2f2744e73046d923ce87f8b0716", "sha256": "c5e06de31294c9b108d20b1c8e5f9fc1e71a7e968e5e86e3e9d4f1488836e955" }, "downloads": -1, "filename": "PySCIPOpt-1.0.2.tar.gz", "has_sig": false, "md5_digest": "abb2b2f2744e73046d923ce87f8b0716", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 259762, "upload_time": "2017-03-14T08:22:28", "url": "https://files.pythonhosted.org/packages/44/4a/34d18ce9e6804427123516b812502c97bd8509220bdad4284b99df5878ae/PySCIPOpt-1.0.2.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "90c12c41e8221ebde8d52c7ec16591cf", "sha256": "914446404fb6284e070ac3ab70668b76c9792410a619d7f32b3fe2847bcebf7c" }, "downloads": -1, "filename": "PySCIPOpt-1.1.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "90c12c41e8221ebde8d52c7ec16591cf", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 303166, "upload_time": "2017-03-23T15:32:39", "url": "https://files.pythonhosted.org/packages/e5/8d/6910832ba1d2246e6449ad92c0c4e42e2dd08162b893bed2e42ba1b408d2/PySCIPOpt-1.1.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "2a5af657601659e109e6baee271e0741", "sha256": "94d5f35b6d53209a088c30200d563881825954f7cc03dcad3e83cc3cf83fcbaf" }, "downloads": -1, "filename": "PySCIPOpt-1.1.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "2a5af657601659e109e6baee271e0741", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 295192, "upload_time": "2017-03-23T15:32:50", "url": "https://files.pythonhosted.org/packages/83/d3/5a9727cac22e1b8baa07e471e2021767ce3f0fb743f4ca36711f8896d2f0/PySCIPOpt-1.1.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "9880b414d493a44c0a0417af7fad3b4c", "sha256": "a3a5adf1a998f619987804e0f9664bcdb423c63124dc0505600b3c20e4c6e21a" }, "downloads": -1, "filename": "PySCIPOpt-1.1.0.tar.gz", "has_sig": false, "md5_digest": "9880b414d493a44c0a0417af7fad3b4c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 287550, "upload_time": "2017-03-17T13:29:48", "url": "https://files.pythonhosted.org/packages/c5/bc/d6572645260526cc60c344a194fcaac1243f22cc194e3c955636ea15b18b/PySCIPOpt-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "a1417634dfaf7788d5a9255a79adae43", "sha256": "d6f40d048a7c8851436551963b18d97dfb7ff193d9fbc4356a9bfb4d6d4fc77e" }, "downloads": -1, "filename": "PySCIPOpt-1.1.1-py2.7-linux-x86_64.egg", "has_sig": false, "md5_digest": "a1417634dfaf7788d5a9255a79adae43", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1237068, "upload_time": "2017-06-08T16:19:24", "url": "https://files.pythonhosted.org/packages/34/94/5f44baf3ac15496428ab072ad62e206eb215b74bf426a2dbeacad912387f/PySCIPOpt-1.1.1-py2.7-linux-x86_64.egg" }, { "comment_text": "", "digests": { "md5": "8fb502f7986d6df8cfd05a3e003216ed", "sha256": "bffeec10d7eb4e5c252bb2948593e3062180ec70b34ca2df6644b5abed9466b3" }, "downloads": -1, "filename": "PySCIPOpt-1.1.1-py3.6-linux-x86_64.egg", "has_sig": false, "md5_digest": "8fb502f7986d6df8cfd05a3e003216ed", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 1493190, "upload_time": "2017-06-08T16:17:41", "url": "https://files.pythonhosted.org/packages/a4/dc/d8c5a11d86998ec944d3ad4a7b1224aa620c3658f00394965bbfb8822d64/PySCIPOpt-1.1.1-py3.6-linux-x86_64.egg" }, { "comment_text": "", "digests": { "md5": "5d661e5b9045063897b122ef7e54f471", "sha256": "f6e5df9ff09399f7e04d7279099a1f9266154bd4c6b76a7f80a7a674ce504d4b" }, "downloads": -1, "filename": "PySCIPOpt-1.1.1.tar.gz", "has_sig": false, "md5_digest": "5d661e5b9045063897b122ef7e54f471", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 311688, "upload_time": "2017-06-08T16:17:44", "url": "https://files.pythonhosted.org/packages/e0/24/018d6245ca58f1fea470fcb9ad1486a2d80fb4236cdc87779c9f05263270/PySCIPOpt-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "263a507b5f9853443ebaaae3656ae320", "sha256": "da7ea2f4b927342374f703c637c7f46cd591c4b2ce27349574f8ebca67510f0b" }, "downloads": -1, "filename": "PySCIPOpt-1.1.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "263a507b5f9853443ebaaae3656ae320", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 303108, "upload_time": "2017-06-19T10:45:33", "url": "https://files.pythonhosted.org/packages/b6/fb/fcfdbc590886affe2a272535430b09b5b283c016f28536b01ebb6ee6c3c0/PySCIPOpt-1.1.2-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4b6ba3b1f025784ce94fc25e1893344a", "sha256": "150556678c712c2d748336b6f14f6951ad4de2e3fccf9bea4b3cb6c098f9d8ad" }, "downloads": -1, "filename": "PySCIPOpt-1.1.2-py2.7-linux-x86_64.egg", "has_sig": false, "md5_digest": "4b6ba3b1f025784ce94fc25e1893344a", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1237086, "upload_time": "2017-06-09T12:52:43", "url": "https://files.pythonhosted.org/packages/ec/1d/ab82531beaaf66332a81c8e74dfd96d5b9cfbd8f1d9843512de25a5e8abc/PySCIPOpt-1.1.2-py2.7-linux-x86_64.egg" }, { "comment_text": "", "digests": { "md5": "0b18284f808ab778b475604dc4b6b511", "sha256": "29157e65ebc87fc65a2b46659617ecc1eb4aa0e61c5ed19e133febb1f44d178d" }, "downloads": -1, "filename": "PySCIPOpt-1.1.2-py3.6-linux-x86_64.egg", "has_sig": false, "md5_digest": "0b18284f808ab778b475604dc4b6b511", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 1493206, "upload_time": "2017-06-09T12:51:05", "url": "https://files.pythonhosted.org/packages/b3/f2/2f0ecedd7174cd614e1125c6a1867ac35b1057bbfc03164dc1ad6ce48e3a/PySCIPOpt-1.1.2-py3.6-linux-x86_64.egg" }, { "comment_text": "", "digests": { "md5": "62b4c15fdfd0f0abc1e765e2cc1759fa", "sha256": "68a76669c9783923552a9b2baf29b646beb96dfbf1799f353c0b24799d8364df" }, "downloads": -1, "filename": "PySCIPOpt-1.1.2.tar.gz", "has_sig": false, "md5_digest": "62b4c15fdfd0f0abc1e765e2cc1759fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 313353, "upload_time": "2017-06-09T12:51:08", "url": "https://files.pythonhosted.org/packages/7d/d0/ed94b94f18163d5dca8a717f0be6754b8927ab1cd64b36542e13aa0f689d/PySCIPOpt-1.1.2.tar.gz" } ], "1.1.3": [ { "comment_text": "", "digests": { "md5": "4e31725724ef5a906336ca321d5238f2", "sha256": "e59a23279b919b19b314bd25c3109a0d545cdf3f25ecd7f3507740bee6baaae5" }, "downloads": -1, "filename": "PySCIPOpt-1.1.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "4e31725724ef5a906336ca321d5238f2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 306934, "upload_time": "2017-07-05T16:47:29", "url": "https://files.pythonhosted.org/packages/0d/bf/0b92b206b65259997df7b182d64f4936755db6cd1412b0c910e83066676f/PySCIPOpt-1.1.3-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c9f5e09a6cab5a2956e8723095516628", "sha256": "3e66afe9adf8273eb93074d2f19567a5ec90986d35d16d81a2d6fc477f20954f" }, "downloads": -1, "filename": "PySCIPOpt-1.1.3-py2.7-linux-x86_64.egg", "has_sig": false, "md5_digest": "c9f5e09a6cab5a2956e8723095516628", "packagetype": "bdist_egg", "python_version": "2.7", "requires_python": null, "size": 1273091, "upload_time": "2017-07-05T16:57:46", "url": "https://files.pythonhosted.org/packages/76/7e/d79204b8a4c9116bae7f6804cd6a60dd9a087be5369c523302fde6b53e60/PySCIPOpt-1.1.3-py2.7-linux-x86_64.egg" }, { "comment_text": "", "digests": { "md5": "b4f4b70f900530e49547174cf16ca8d1", "sha256": "e900dc8e6c16ffd329d370e2e6767f058527bf368520518c02969f9691dd13ba" }, "downloads": -1, "filename": "PySCIPOpt-1.1.3-py3.6-linux-x86_64.egg", "has_sig": false, "md5_digest": "b4f4b70f900530e49547174cf16ca8d1", "packagetype": "bdist_egg", "python_version": "3.6", "requires_python": null, "size": 1527938, "upload_time": "2017-07-05T16:51:13", "url": "https://files.pythonhosted.org/packages/92/f2/0348ce2b87bac1cc89b86eb3fd3e651bf33ee16c0b46f0a80307a2d74c63/PySCIPOpt-1.1.3-py3.6-linux-x86_64.egg" }, { "comment_text": "", "digests": { "md5": "e675801f5d3b1ccee9950250bc4ce6ec", "sha256": "988f5dc54b26867b628b1580a7f618ff49518b93120835fe18767801cd629b98" }, "downloads": -1, "filename": "PySCIPOpt-1.1.3.tar.gz", "has_sig": false, "md5_digest": "e675801f5d3b1ccee9950250bc4ce6ec", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 321161, "upload_time": "2017-07-05T16:51:16", "url": "https://files.pythonhosted.org/packages/a1/d0/eef3d474de1fae20a1f840222625b99a7aec96373044766f49105c39ab92/PySCIPOpt-1.1.3.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "8c22a65f5423989d6dedb82de568a370", "sha256": "07ab2949f686073ec307e2517dee714334d80309605e873b2820d47a9a063289" }, "downloads": -1, "filename": "PySCIPOpt-1.2.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "8c22a65f5423989d6dedb82de568a370", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 348987, "upload_time": "2017-09-11T16:50:44", "url": "https://files.pythonhosted.org/packages/5f/ea/1ff516d0b0ad173d7da9365dc2fbe5844d30c0d9f775e28301b55103e845/PySCIPOpt-1.2.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7c0f19dd7aa16a8398c8942aac3e8871", "sha256": "9df47c26f3b3c2070aa951a74084f94d6e4585fc4d24ad4f61f400f73f3af5fe" }, "downloads": -1, "filename": "PySCIPOpt-1.2.0.tar.gz", "has_sig": false, "md5_digest": "7c0f19dd7aa16a8398c8942aac3e8871", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 358857, "upload_time": "2017-09-11T16:54:46", "url": "https://files.pythonhosted.org/packages/51/e1/0763ed28963e516d4bdbef958656ef365935beeba979da5e5565e8c50319/PySCIPOpt-1.2.0.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "e3b72d2751870e5fd0fe6154a4c11bab", "sha256": "2a58b39fb337d65e484fb0ab0ab989ca28e3cee116345ec94527907a9e9207b1" }, "downloads": -1, "filename": "PySCIPOpt-1.3.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "e3b72d2751870e5fd0fe6154a4c11bab", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 368800, "upload_time": "2017-12-22T17:29:17", "url": "https://files.pythonhosted.org/packages/26/28/954d9319baea829aaa2399dd7715ad8cb745a852297aa300fc0f27ea6809/PySCIPOpt-1.3.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "73319a634ba098bae769f14229d37a42", "sha256": "b1dadb6ef52aa39dac0e9fb83446f493cb470a8f40ab2a1c3773031b2f7009c0" }, "downloads": -1, "filename": "PySCIPOpt-1.3.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "73319a634ba098bae769f14229d37a42", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 345391, "upload_time": "2017-12-22T17:31:34", "url": "https://files.pythonhosted.org/packages/43/b0/08b85529ca6c99aae0b1043669cf8969feaea987530c8d59f826d6369dca/PySCIPOpt-1.3.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "d36aa4c4f1148c028d89eb4fd1e177ca", "sha256": "ecb327964370ee8dc7e8d1b17a0fe2f70770e9b445f923a047a693eeacdf6622" }, "downloads": -1, "filename": "PySCIPOpt-1.3.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "d36aa4c4f1148c028d89eb4fd1e177ca", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 371601, "upload_time": "2017-12-22T17:32:33", "url": "https://files.pythonhosted.org/packages/53/85/1b6fc187a7ef497f9dcb13d52d56620c0a043917253c9bbb47c750ba20f5/PySCIPOpt-1.3.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "e1d8f409f9797b6a18756ac54e1417a4", "sha256": "420378d6f7ff959333eac9e464b4fad32d7b19237ff77025428141c3683077cd" }, "downloads": -1, "filename": "PySCIPOpt-1.3.0.tar.gz", "has_sig": false, "md5_digest": "e1d8f409f9797b6a18756ac54e1417a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 367621, "upload_time": "2017-12-22T17:34:47", "url": "https://files.pythonhosted.org/packages/67/74/abb948b53e9baf34b50267de331107f994af4991a13b4b78463ca944b808/PySCIPOpt-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "94e721e1d5381ef5a4aa52e7f66dd235", "sha256": "dd2562c566873f300d797cd0b9c3caf5a9adfe16d8eec9fe495538c229ea9531" }, "downloads": -1, "filename": "PySCIPOpt-1.3.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "94e721e1d5381ef5a4aa52e7f66dd235", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 402727, "upload_time": "2018-02-14T08:51:37", "url": "https://files.pythonhosted.org/packages/27/f2/b96af30df1e3813bbb6655c97a17be866cb633eb5655b7abdea7ad319520/PySCIPOpt-1.3.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5920fb7c1c6aa9b9ec11861205e4889e", "sha256": "fcbe25c2888c17f883e442c7550f62de0c09b1268e2db2ae839bdf1317018baa" }, "downloads": -1, "filename": "PySCIPOpt-1.3.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "5920fb7c1c6aa9b9ec11861205e4889e", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 377413, "upload_time": "2018-02-14T08:53:33", "url": "https://files.pythonhosted.org/packages/ef/3b/fa81d6ba215e1344e4ec5bd74b86aad0517ea428522978e6bf16157306de/PySCIPOpt-1.3.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "56fb759d717ce3f5fae402a9f57f8ae4", "sha256": "117b2d2704ed6703926e8c26efcaf62e14524af9a25b210de916474210984257" }, "downloads": -1, "filename": "PySCIPOpt-1.3.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "56fb759d717ce3f5fae402a9f57f8ae4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 406002, "upload_time": "2018-02-14T08:55:05", "url": "https://files.pythonhosted.org/packages/7c/d6/6aa78e144367b79bd50c08f789725909200ef4b676fe7ac65da90951ab56/PySCIPOpt-1.3.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a3c33d21c355c22d99fc49003a6eeefd", "sha256": "4079b5f8d365b428a1d99cc08447d7f64b64ccfcfb4c3ab0d1105a3dfd400e29" }, "downloads": -1, "filename": "PySCIPOpt-1.3.1.tar.gz", "has_sig": false, "md5_digest": "a3c33d21c355c22d99fc49003a6eeefd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 397447, "upload_time": "2018-02-14T08:32:13", "url": "https://files.pythonhosted.org/packages/83/b4/07c0bc98f24c1310ea6b660d3e80b8de135f0da6d11bf0bf87cbcf04ac08/PySCIPOpt-1.3.1.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "b4792ea1e43ffe5b6b63546d24ae3918", "sha256": "6731bea75f377409e0e39522902d6c7a8848729b35d05b70588c652f31d437de" }, "downloads": -1, "filename": "PySCIPOpt-1.4.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "b4792ea1e43ffe5b6b63546d24ae3918", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 476254, "upload_time": "2018-03-02T15:19:32", "url": "https://files.pythonhosted.org/packages/99/eb/28774e19bcda9a8b329b03a81d0ff3a1f69497192aaf35bd2d8487962355/PySCIPOpt-1.4.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5ac4d45dafdde46ab2bd5e16d334e1c4", "sha256": "b6f585899cbde32c69cb195d0123ed5b63fb151809b74272d69400c944216142" }, "downloads": -1, "filename": "PySCIPOpt-1.4.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "5ac4d45dafdde46ab2bd5e16d334e1c4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 442984, "upload_time": "2018-03-02T15:21:23", "url": "https://files.pythonhosted.org/packages/e4/20/c22e33592eea81f4c3ab78baab6ec505a222f4488ba9631979c2a540bc0b/PySCIPOpt-1.4.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c4e07c8cc51c5bc113889c9656064544", "sha256": "48eda48aaa9a592ba44fc016d5c388f9c7a18bc38ace59b55e759c3afed8d667" }, "downloads": -1, "filename": "PySCIPOpt-1.4.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "c4e07c8cc51c5bc113889c9656064544", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 476020, "upload_time": "2018-03-02T15:23:20", "url": "https://files.pythonhosted.org/packages/e1/19/0510cd769a4f5de1df53cbd65734a597a71d78300744bd7361b45fe69c52/PySCIPOpt-1.4.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "6d40750e286348247e31e568bf16ee2d", "sha256": "79e4be37bbbf052a6fa457b23bf0fb22d884c7820faa902c62721db570bd7c62" }, "downloads": -1, "filename": "PySCIPOpt-1.4.0.tar.gz", "has_sig": false, "md5_digest": "6d40750e286348247e31e568bf16ee2d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 457744, "upload_time": "2018-03-02T15:26:32", "url": "https://files.pythonhosted.org/packages/59/73/087bcb1d4e284681346a8847b83c5a86568dd19034ead0884450fa6bda50/PySCIPOpt-1.4.0.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "ae8d150d90d250d6ecc39de49b06d85c", "sha256": "6a25c0c21619da2ecff06a17ddd75b89b3f5c52da7b25f561bc2b18848cfdfa6" }, "downloads": -1, "filename": "PySCIPOpt-1.4.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "ae8d150d90d250d6ecc39de49b06d85c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 477691, "upload_time": "2018-04-09T05:48:43", "url": "https://files.pythonhosted.org/packages/02/41/e0c48e1f921b9ba995737f3cc944243ded7edb0fd4ca57959b4c12b1fd9d/PySCIPOpt-1.4.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b66630e5f37d53ec40342445578aec7b", "sha256": "2362b0e8df2c18b9c1a5a7de3bae9fe2742003029a16fcf0ac181695bfb0565b" }, "downloads": -1, "filename": "PySCIPOpt-1.4.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "b66630e5f37d53ec40342445578aec7b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 447616, "upload_time": "2018-04-09T05:50:09", "url": "https://files.pythonhosted.org/packages/7f/7d/a579380aa78f993cd7863a3b9b9aba629b3cd5189c0f59ab341f8d236f52/PySCIPOpt-1.4.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "8a6e02f0e26059d35d08d133a78ffae2", "sha256": "2430ece9d52fcca7c4f90c189f43aace8fa692b1f371960b7f6df614d8c935e8" }, "downloads": -1, "filename": "PySCIPOpt-1.4.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "8a6e02f0e26059d35d08d133a78ffae2", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 478680, "upload_time": "2018-04-09T05:51:29", "url": "https://files.pythonhosted.org/packages/66/fa/2befc1ebd0536daeff31282b9f12f739f8b9d04107a16cc7f36f302f0c66/PySCIPOpt-1.4.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "142dc9d68e6dbf327ccbfb0833878afc", "sha256": "0c0ab201868aedc3bc7862015474f1602e9641762b89481d31c7ee937231af1f" }, "downloads": -1, "filename": "PySCIPOpt-1.4.1.tar.gz", "has_sig": false, "md5_digest": "142dc9d68e6dbf327ccbfb0833878afc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 461116, "upload_time": "2018-04-09T05:58:11", "url": "https://files.pythonhosted.org/packages/36/14/424b6f777efc7342b65dd3f9f629f5bace84d537c7b6ff80cc40097c60a8/PySCIPOpt-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "ad32803b7ba5952921f76c2ff8bb8ce4", "sha256": "62ae8e7c465a8baf2efcf462ac68ab85ef82d6e92f817a1df6ce6f18aaf476e0" }, "downloads": -1, "filename": "PySCIPOpt-1.4.2-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "ad32803b7ba5952921f76c2ff8bb8ce4", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 479928, "upload_time": "2018-04-09T08:17:22", "url": "https://files.pythonhosted.org/packages/97/a7/cf16caf3b4ecf661ca5529816197e4d286310009c894c9b57c06ad647c2d/PySCIPOpt-1.4.2-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1a653c12c0f37e4efad18cf0ccee7084", "sha256": "1c00a0ecf58a87e33e41a06401c4163ba4abf90e38352a06b9b54ab2e2c1a0d9" }, "downloads": -1, "filename": "PySCIPOpt-1.4.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "1a653c12c0f37e4efad18cf0ccee7084", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 450011, "upload_time": "2018-04-09T08:18:59", "url": "https://files.pythonhosted.org/packages/b8/8d/85a3ef6cdd42f695557889fe292df29b274775abdb110ff54384fb601d74/PySCIPOpt-1.4.2-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b346949516b899a957681b527dcbd55d", "sha256": "b6209bc998ea8e70c592c5da256c78d92d2ab9dadf2e5216748d6c37dc295554" }, "downloads": -1, "filename": "PySCIPOpt-1.4.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "b346949516b899a957681b527dcbd55d", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 481066, "upload_time": "2018-04-09T08:20:40", "url": "https://files.pythonhosted.org/packages/ee/3f/77e4715d3e98e641cdca55cabfb98e742f13e6d6a80283254aae7b8704cc/PySCIPOpt-1.4.2-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4f175316bc3ba4ce97c284434a4b62f0", "sha256": "d73588b4801d3f1e95bf61c4fa94416c6a55b4dc0fea14d053ad9b042c52883c" }, "downloads": -1, "filename": "PySCIPOpt-1.4.2.tar.gz", "has_sig": false, "md5_digest": "4f175316bc3ba4ce97c284434a4b62f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 463512, "upload_time": "2018-04-09T08:13:08", "url": "https://files.pythonhosted.org/packages/c0/b6/b619a33cd90dbf5579de341c873f85f0388030c47ee5da71a9113ee308d4/PySCIPOpt-1.4.2.tar.gz" } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "7bf178a5f8a7cd6fce27143605c209c8", "sha256": "5ecc7cab03cfbe5e819284b7efd2ea7b3c1542e0a96acce6f3347547334e07f9" }, "downloads": -1, "filename": "PySCIPOpt-1.4.3-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "7bf178a5f8a7cd6fce27143605c209c8", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 486228, "upload_time": "2018-04-10T12:41:53", "url": "https://files.pythonhosted.org/packages/8a/b6/516ea3dfeb81981e4f53b267be861d5b806e0ba349790f7150529110342b/PySCIPOpt-1.4.3-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ab9868e2dd02061eacc7403ca9e0cdb0", "sha256": "fb6965c8099661cba176642d0e8e1347f5846174c9011fb8f7562042d6f1454d" }, "downloads": -1, "filename": "PySCIPOpt-1.4.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "ab9868e2dd02061eacc7403ca9e0cdb0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 454869, "upload_time": "2018-04-10T12:43:59", "url": "https://files.pythonhosted.org/packages/cc/86/b19c3afe9523162b95d88ee9f14ecea375924644929c386ea22ea395c2fd/PySCIPOpt-1.4.3-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "60be1d2c6f3ae430b2cd02aa70ade582", "sha256": "233e50f9b707392a193422976a5bc60808e70673ce551c2be2bd8df7122fd4b8" }, "downloads": -1, "filename": "PySCIPOpt-1.4.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "60be1d2c6f3ae430b2cd02aa70ade582", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 485430, "upload_time": "2018-04-10T12:46:53", "url": "https://files.pythonhosted.org/packages/6d/51/4285b2acb97bfb9957bd3a95708a1117f1861e395a0310176e2001dabe5a/PySCIPOpt-1.4.3-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7f99f1637e14b22a617dc8cec48132dd", "sha256": "2f5741acf41e50787fc28c73eee5840d553f6c9a7e800c6ad61e6cce3b0f95fa" }, "downloads": -1, "filename": "PySCIPOpt-1.4.3.tar.gz", "has_sig": false, "md5_digest": "7f99f1637e14b22a617dc8cec48132dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 469159, "upload_time": "2018-04-10T12:34:41", "url": "https://files.pythonhosted.org/packages/26/6c/937dbb6fb2aeaf78d5175fa08310fed30a347d35ea7d56e09b5fbd0cce58/PySCIPOpt-1.4.3.tar.gz" } ], "1.4.4": [ { "comment_text": "", "digests": { "md5": "31ff5fbb0c530c06c99dcdb743f815dd", "sha256": "80c565fd427bafd6672540694727304474ab290b8534821e52f0db471c763456" }, "downloads": -1, "filename": "PySCIPOpt-1.4.4-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "31ff5fbb0c530c06c99dcdb743f815dd", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 486592, "upload_time": "2018-04-16T13:42:21", "url": "https://files.pythonhosted.org/packages/1f/fb/3e160f235e920d9b908e05e6c75a0a84ed8c12cfb48e3fecb759c132e55f/PySCIPOpt-1.4.4-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3f283c7e8aaf08abc5c37c42102f09c1", "sha256": "59d2a9e2421a5ca8ab4c34b03a5302b8c3647c141db1fa14f3d49e99a1816dbb" }, "downloads": -1, "filename": "PySCIPOpt-1.4.4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "3f283c7e8aaf08abc5c37c42102f09c1", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 455403, "upload_time": "2018-04-16T13:45:08", "url": "https://files.pythonhosted.org/packages/b0/10/17c2f6854a7b9fc7ea278f664ad7955a10eeb2e99a5612d2477f82ccf060/PySCIPOpt-1.4.4-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "063ea96ea778195265e2d96f847d51c3", "sha256": "376307ac629d1b0824df8f525bb354af49188c1c9b1676418e3ce05d4bc4cc45" }, "downloads": -1, "filename": "PySCIPOpt-1.4.4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "063ea96ea778195265e2d96f847d51c3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 485672, "upload_time": "2018-04-16T13:47:47", "url": "https://files.pythonhosted.org/packages/12/b8/2a431c81d401f86d435d31faf787c47e68141a4e0158eeabf5b6018e9aea/PySCIPOpt-1.4.4-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "d2b2794e4bd5c61dafd01d39edfbb2c1", "sha256": "6c52fc8ad2dcc01102546a57c8e6718619784529750b73df71f45e1272b2ad06" }, "downloads": -1, "filename": "PySCIPOpt-1.4.4.tar.gz", "has_sig": false, "md5_digest": "d2b2794e4bd5c61dafd01d39edfbb2c1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 469996, "upload_time": "2018-04-16T13:43:43", "url": "https://files.pythonhosted.org/packages/50/2e/392ae55d3c13ef7d91eee69c764d6362e1e27f7ecceee00572f60637522c/PySCIPOpt-1.4.4.tar.gz" } ], "1.4.5": [ { "comment_text": "", "digests": { "md5": "d3943bb724d5d2ee186bb154b5378d84", "sha256": "4758321a0ce699def526eee600c3d625d7d2090a7809e83986dcfda3697612fc" }, "downloads": -1, "filename": "PySCIPOpt-1.4.5-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "d3943bb724d5d2ee186bb154b5378d84", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 486597, "upload_time": "2018-04-24T14:33:40", "url": "https://files.pythonhosted.org/packages/6d/36/c57f728014c707c5c4047efcb6875065acb13b882edfda3ce67cb2f37cd2/PySCIPOpt-1.4.5-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4878de260ad0db9732f4569ef33dadc9", "sha256": "23c171eab57382b32062887889bd87f45d409265be3f5e4d757bb2a6197bee33" }, "downloads": -1, "filename": "PySCIPOpt-1.4.5-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "4878de260ad0db9732f4569ef33dadc9", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 455396, "upload_time": "2018-04-24T14:36:18", "url": "https://files.pythonhosted.org/packages/0c/f1/3f3d73b3f3b2e51ec09cdf0065fca0d7fb7cc6a5ae0b0b18bf7cbee18390/PySCIPOpt-1.4.5-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b3d61f86291dc3d5a53bd74068a423a0", "sha256": "dcacc0f84855f9b3cc1ac86e2c3dca62efc4d6b47bae5fe2a9de19fe20df6d0e" }, "downloads": -1, "filename": "PySCIPOpt-1.4.5-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "b3d61f86291dc3d5a53bd74068a423a0", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 485662, "upload_time": "2018-04-24T14:39:23", "url": "https://files.pythonhosted.org/packages/2c/db/968c92da62bb604e72d6849ec818284c71dd3d82ad127afcb6225d9f628e/PySCIPOpt-1.4.5-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "d121a23cab37f304f72015e5787e59e7", "sha256": "ea402cda58e04a9b32a2bfd4da064cf199be7aa11a09a570ef38647aebbbaebe" }, "downloads": -1, "filename": "PySCIPOpt-1.4.5.tar.gz", "has_sig": false, "md5_digest": "d121a23cab37f304f72015e5787e59e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 469990, "upload_time": "2018-04-24T14:35:40", "url": "https://files.pythonhosted.org/packages/df/b0/a76bdc825ad672bacd2e67b0d5f215b59494f44f82d46e9f975d4468b7ab/PySCIPOpt-1.4.5.tar.gz" } ], "1.4.6": [ { "comment_text": "", "digests": { "md5": "a9c4fa6d7203464f9572ccf381d8a049", "sha256": "881367ad72970942141430cf5b414c0da1c6d3ed8342e9cfb6d8fcc172b40ce6" }, "downloads": -1, "filename": "PySCIPOpt-1.4.6-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "a9c4fa6d7203464f9572ccf381d8a049", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 472958, "upload_time": "2018-05-07T08:49:31", "url": "https://files.pythonhosted.org/packages/2e/3a/d9749cd40d039970d89239ede35a4e0d9824b8ba1be17b2e2c1cce32c186/PySCIPOpt-1.4.6-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "14decb3a88e819e282240121ba5bad9a", "sha256": "710fbdd03be8b2e40209fc9e44bf15744af865c51c21173bd21f33d4e0455655" }, "downloads": -1, "filename": "PySCIPOpt-1.4.6-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "14decb3a88e819e282240121ba5bad9a", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 507120, "upload_time": "2018-05-07T08:51:07", "url": "https://files.pythonhosted.org/packages/fe/ca/10f0d79cdb3f4350f7d6fb1067561d00bcc4d3e462eebd532e9ec5bd2df3/PySCIPOpt-1.4.6-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "9fd444ca808cd76cd9a349718b5d3d95", "sha256": "2e257aef7a1a342de46bafcfddde00701e1bf7b6890d753301efdd88c177c92e" }, "downloads": -1, "filename": "PySCIPOpt-1.4.6.tar.gz", "has_sig": false, "md5_digest": "9fd444ca808cd76cd9a349718b5d3d95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 487579, "upload_time": "2018-05-07T08:56:07", "url": "https://files.pythonhosted.org/packages/7d/c6/18ff9f0b416a282b78f827efa2f8543ef8daa6d9148ee2a26cef3b53ec75/PySCIPOpt-1.4.6.tar.gz" } ], "1.4.7": [ { "comment_text": "", "digests": { "md5": "17f17c160ee382f3473998227469364a", "sha256": "aa2e75d850dbec3f03f158892bab1c34d9fcecd6dde05674babcd73e0c567e49" }, "downloads": -1, "filename": "PySCIPOpt-1.4.7-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "17f17c160ee382f3473998227469364a", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 507260, "upload_time": "2018-05-22T15:15:51", "url": "https://files.pythonhosted.org/packages/2a/84/429e773d6b16f42c5d8e4e8152f78fe6c5db6d17dd36f79fe908b9c44a01/PySCIPOpt-1.4.7-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "63e0cb9f79ad23435b475c6b7db66143", "sha256": "c0ad2b4fbd084f6c2446a5010143c244ff8120cfd7a4e5ee596479ba414240c1" }, "downloads": -1, "filename": "PySCIPOpt-1.4.7-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "63e0cb9f79ad23435b475c6b7db66143", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 475190, "upload_time": "2018-05-22T15:18:26", "url": "https://files.pythonhosted.org/packages/7a/58/6b217392c338438956aeb800ed0aceff465991c3fcfc6a145f002799c801/PySCIPOpt-1.4.7-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "b7fb76299169c46830e1ce6873f13aaf", "sha256": "17661d14b04cacafb8c7d110016e091233417df2bbfb5570931cd55a777d0aaa" }, "downloads": -1, "filename": "PySCIPOpt-1.4.7-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "b7fb76299169c46830e1ce6873f13aaf", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 508405, "upload_time": "2018-05-22T15:22:23", "url": "https://files.pythonhosted.org/packages/5e/b6/4a4bdbc15c5d34bd8c4501cbcf81c385fb0833ecbedd4014bbf40187b3e2/PySCIPOpt-1.4.7-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "e561996caf237617b02df594b47001ee", "sha256": "2e5458b72639d54563aea248198efe68d86ff4ea9e9f2f378ed011062b879037" }, "downloads": -1, "filename": "PySCIPOpt-1.4.7.tar.gz", "has_sig": false, "md5_digest": "e561996caf237617b02df594b47001ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 487581, "upload_time": "2018-05-18T14:05:50", "url": "https://files.pythonhosted.org/packages/d3/92/8b167d5344656a4cff9c72fa32e61f756d102a119399092256f42a801614/PySCIPOpt-1.4.7.tar.gz" } ], "1.4.8": [ { "comment_text": "", "digests": { "md5": "d397a5f8159f910d4a52cd46bdc1999e", "sha256": "c4bb502318f5b6f4cc6348b7d169ee64ab409fb0cb7396e160a2f2042ba7429d" }, "downloads": -1, "filename": "PySCIPOpt-1.4.8-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "d397a5f8159f910d4a52cd46bdc1999e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 507295, "upload_time": "2018-05-29T13:25:32", "url": "https://files.pythonhosted.org/packages/37/7d/3365308a24e94b8f4c2014253ba92cfdf6f88f2e619623c9082ac664b89e/PySCIPOpt-1.4.8-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "15147c56e77a1a3cf970735ac6256dd2", "sha256": "91870fe2e97ae894275ff35b9b1c0ead73390a0930150f7003b9228018975c52" }, "downloads": -1, "filename": "PySCIPOpt-1.4.8-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "15147c56e77a1a3cf970735ac6256dd2", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 475536, "upload_time": "2018-05-29T13:27:27", "url": "https://files.pythonhosted.org/packages/00/2d/42873872484710b28afa09f90d7db2f68e902e802b23aa2bb403d1a6da2b/PySCIPOpt-1.4.8-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "e6d3a5f26da97c5b5b0225f383ac8e01", "sha256": "49223c1a6f428cc2f511c1665f16fe90f5aa3916c9c0e098d368962d3f147bc4" }, "downloads": -1, "filename": "PySCIPOpt-1.4.8-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "e6d3a5f26da97c5b5b0225f383ac8e01", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 508733, "upload_time": "2018-05-29T13:28:54", "url": "https://files.pythonhosted.org/packages/84/41/dd7b751ade5f4725f29c5375b6a02a1e1e369a03f7d0aac68e07264dbfd8/PySCIPOpt-1.4.8-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c66f9d7c3edfab2d0aaa373530dc393d", "sha256": "4836c57a915046d70ffcad5c2f233cc6773e13a219086e8dd24fc1dbec8bba84" }, "downloads": -1, "filename": "PySCIPOpt-1.4.8.tar.gz", "has_sig": false, "md5_digest": "c66f9d7c3edfab2d0aaa373530dc393d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 490611, "upload_time": "2018-05-29T13:25:03", "url": "https://files.pythonhosted.org/packages/d6/3a/3c9ca943914f633c5a4b889258f91c3d740d980430a6dc44ac199242ddb2/PySCIPOpt-1.4.8.tar.gz" } ], "1.4.9": [ { "comment_text": "", "digests": { "md5": "51b8f770bda05e50dd9a9c3bc366472c", "sha256": "c5fe9851003396911c14a700f653d12c384b6fd0d3beb6fc827d8877e1a4b10d" }, "downloads": -1, "filename": "PySCIPOpt-1.4.9-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "51b8f770bda05e50dd9a9c3bc366472c", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 512519, "upload_time": "2018-05-29T16:45:56", "url": "https://files.pythonhosted.org/packages/7b/64/f76ec81d8dec3419024ee6ecf812fe4614579776ac03dfd8375f80086b48/PySCIPOpt-1.4.9-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "967612b0236e6f432147a4ffa8f85d8b", "sha256": "f66f9eb25ea9b0b5ad2edd842ba81a68e22b2b1252f3ef3f8899f577c4c83fd7" }, "downloads": -1, "filename": "PySCIPOpt-1.4.9-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "967612b0236e6f432147a4ffa8f85d8b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 481509, "upload_time": "2018-05-29T16:47:30", "url": "https://files.pythonhosted.org/packages/a1/7f/2d0d49f2007ba7d7a640d575a4a00cb56e733d85e81cdd3ed9982cc581e7/PySCIPOpt-1.4.9-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "e75caed0b505316a2f6a229936a306ad", "sha256": "5ae0629ef4c1a45425b276748feb3d45e9d816d1a6fb71cc3dd49a68102844ef" }, "downloads": -1, "filename": "PySCIPOpt-1.4.9-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "e75caed0b505316a2f6a229936a306ad", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 513883, "upload_time": "2018-05-29T16:49:14", "url": "https://files.pythonhosted.org/packages/21/77/428c4f7846b83cbcb8eed8ae70744853d0dc3f73d7b553173d5d5be9a0db/PySCIPOpt-1.4.9-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "31f5dae89893ce98d6a5f4e005a646ef", "sha256": "e4de159ab30d604c37b4b2069f142f80f246c23b85baef38d72d77cb99effa37" }, "downloads": -1, "filename": "PySCIPOpt-1.4.9.tar.gz", "has_sig": false, "md5_digest": "31f5dae89893ce98d6a5f4e005a646ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 496610, "upload_time": "2018-05-29T16:47:29", "url": "https://files.pythonhosted.org/packages/6d/86/1f43d131705b5e30750ca814f021008ed47ea5906d5f975d7eff7dee1eae/PySCIPOpt-1.4.9.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "1d42e57c8d1069602bc03a585a9fa0e3", "sha256": "1064ea00746b225f0d3f016808b1d9414aaa95283f6abc0aa785e658977a5246" }, "downloads": -1, "filename": "PySCIPOpt-2.0.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "1d42e57c8d1069602bc03a585a9fa0e3", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 537225, "upload_time": "2018-07-03T12:25:47", "url": "https://files.pythonhosted.org/packages/17/6b/9a6df08ecc56710cdbe0b7e9dd01bf0d428b79db2462a50546aa2603f479/PySCIPOpt-2.0.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ac734ac5a7d1f4b7558f79b8da51a4ff", "sha256": "d284b7f8dee2b46147269c4d3d973c990beda6c3b0d4493ab61f79e23e7895dd" }, "downloads": -1, "filename": "PySCIPOpt-2.0.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "ac734ac5a7d1f4b7558f79b8da51a4ff", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 503183, "upload_time": "2018-07-03T12:28:17", "url": "https://files.pythonhosted.org/packages/f1/4b/1915f40e8477e7fb2be32cf144fc3de05f350391868618dcbf951698a9b7/PySCIPOpt-2.0.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "0b38c7b52920ae22451d215f80c7d1ac", "sha256": "03913ae368c507ab99dd40b3ce79801e63bb870118d9e165a6159840245ab72e" }, "downloads": -1, "filename": "PySCIPOpt-2.0.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "0b38c7b52920ae22451d215f80c7d1ac", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 539377, "upload_time": "2018-07-03T12:30:33", "url": "https://files.pythonhosted.org/packages/f5/c3/13a96ee51151e88e0bfacb842322ed3da1403d32ad897388d7f50fb79555/PySCIPOpt-2.0.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "75fd5ef9abc89e3999d27521e250e12c", "sha256": "a077d4a3a5e57a51b757a18a4f9fd97be64a63aab6da65b4b88126f074790fab" }, "downloads": -1, "filename": "PySCIPOpt-2.0.0.tar.gz", "has_sig": false, "md5_digest": "75fd5ef9abc89e3999d27521e250e12c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 520935, "upload_time": "2018-07-03T12:37:51", "url": "https://files.pythonhosted.org/packages/97/f5/496b671b0b46fb8c2dd7250ed1f73695a1d3b0dfb212e88442a538b2e966/PySCIPOpt-2.0.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "4aeb9a8143b0b5d2b178815eebbd15df", "sha256": "1dfc36ef4b159dd148a3a0adf9f69695ca03beeae1463fe1197c45f00cfe3211" }, "downloads": -1, "filename": "PySCIPOpt-2.0.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "4aeb9a8143b0b5d2b178815eebbd15df", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 551125, "upload_time": "2018-08-15T17:12:29", "url": "https://files.pythonhosted.org/packages/d9/f1/a0b1336f0a081e6b6397009cfe2c5c3379fa78d4d1aa59a16f557e062045/PySCIPOpt-2.0.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f690ffce9fae1f230b42cac75e6a951d", "sha256": "4736749dc852c18ba2725f309d3f4f6b9b79df25eef1e9a0752d7f86c642665f" }, "downloads": -1, "filename": "PySCIPOpt-2.0.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "f690ffce9fae1f230b42cac75e6a951d", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 518243, "upload_time": "2018-08-15T17:14:38", "url": "https://files.pythonhosted.org/packages/5d/e2/fb5cbb5044f2105b033ef551a8a9fa14ce743bc6bc7e8f6d8346a8a7928e/PySCIPOpt-2.0.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3099a71b114d8a2ab3c7f0cfd2b0c4d5", "sha256": "ed5c1669263a513d39efadc84b3d00772bc5106079906a93d51cc1b066d3a4e5" }, "downloads": -1, "filename": "PySCIPOpt-2.0.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "3099a71b114d8a2ab3c7f0cfd2b0c4d5", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 553286, "upload_time": "2018-08-15T17:16:17", "url": "https://files.pythonhosted.org/packages/2c/92/40722f060cfba85f69df02dc7c8a3d3c69bb32465e032dd8bee90db1be1a/PySCIPOpt-2.0.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f3b05cfd3a57b886da395d831f0f2ab2", "sha256": "bbdd71788bcd07565526d5f7093ebdaae07603eeff2af802f61cb0903a38917c" }, "downloads": -1, "filename": "PySCIPOpt-2.0.1.tar.gz", "has_sig": false, "md5_digest": "f3b05cfd3a57b886da395d831f0f2ab2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 531892, "upload_time": "2018-08-15T17:20:33", "url": "https://files.pythonhosted.org/packages/44/12/aaca02cf935e405f7b6a2a821d5ec16ad322e0f34472c986c36a5717b6b7/PySCIPOpt-2.0.1.tar.gz" } ], "2.0.2": [ { "comment_text": "", "digests": { "md5": "eeaa5de201172ab7fc9a97e97b2840e7", "sha256": "744b87203e9c1f579aec56f77c396353c326ea53a25d27f3685cee95ff0cea3d" }, "downloads": -1, "filename": "PySCIPOpt-2.0.2-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "eeaa5de201172ab7fc9a97e97b2840e7", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 517468, "upload_time": "2018-11-04T21:06:06", "url": "https://files.pythonhosted.org/packages/82/a6/c7ebe3c9fc0db9ffc1090b9d4c5dce82344b598a5c8cdd8961fcaff2e6f4/PySCIPOpt-2.0.2-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "e365974f71e03e1df16a7f03454d1c57", "sha256": "300c119c27aebdfaf2d917848bd2ba40de4f9d35c89d81f2ea727a6c4036cb30" }, "downloads": -1, "filename": "PySCIPOpt-2.0.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "e365974f71e03e1df16a7f03454d1c57", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 488739, "upload_time": "2018-11-04T21:08:09", "url": "https://files.pythonhosted.org/packages/8f/0d/6e5ec3622265b67758c03135cf6bbfd8cc3847f0bf3649157815d14986ea/PySCIPOpt-2.0.2-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "59b104bb9fe90d5f61c2794b5d3ae655", "sha256": "02cbef104234d81d72dc72737418effbc9a2729a2c5f9c9351f819acb705cef9" }, "downloads": -1, "filename": "PySCIPOpt-2.0.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "59b104bb9fe90d5f61c2794b5d3ae655", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 529908, "upload_time": "2018-11-04T21:10:03", "url": "https://files.pythonhosted.org/packages/03/d5/10fa2c71ac1006faa80c8149dc6ad38d45c596c30a2958563f2385c04b59/PySCIPOpt-2.0.2-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3d16b1bfb60cf08b4f8115a47a8bf294", "sha256": "df5a695f38663a0bc77c22b95c6b38acda00acf1a964d21ae697791ec5bea6f0" }, "downloads": -1, "filename": "PySCIPOpt-2.0.2.tar.gz", "has_sig": false, "md5_digest": "3d16b1bfb60cf08b4f8115a47a8bf294", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 511007, "upload_time": "2018-11-04T21:01:51", "url": "https://files.pythonhosted.org/packages/0a/b7/508c7e3c99825e8dec5cc6a4fe92bff019b562478cdf49941dca607423e3/PySCIPOpt-2.0.2.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "d296d2e461a3220734ef502a7a4ecfed", "sha256": "9d23d73047530a55d18b5c83f7b95aed2c937bd328488714623a15c9cc26a5c6" }, "downloads": -1, "filename": "PySCIPOpt-2.1.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "d296d2e461a3220734ef502a7a4ecfed", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 518672, "upload_time": "2018-12-03T07:00:29", "url": "https://files.pythonhosted.org/packages/55/40/90e2a8e8b11b4428a36f770851ceec6aacf40d6c6506331aa71b3e295398/PySCIPOpt-2.1.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "1dde8c5e4f12c525363d7168054a41f7", "sha256": "f988927f8c62d7da30a67f6d3bf1d9108ca704fb8988cd2d42d8888f3cd05e7d" }, "downloads": -1, "filename": "PySCIPOpt-2.1.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "1dde8c5e4f12c525363d7168054a41f7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 492614, "upload_time": "2018-12-03T07:02:35", "url": "https://files.pythonhosted.org/packages/7a/d3/411638d06840f1f4b38c6468c79f49b9e1142907bb4be4a17e75621a8f5b/PySCIPOpt-2.1.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "229da09698cba62756e67701d48baadc", "sha256": "98744dea3dae39cb6c78fffa31c3f36733621d624f38e88f858108642197f046" }, "downloads": -1, "filename": "PySCIPOpt-2.1.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "229da09698cba62756e67701d48baadc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 534016, "upload_time": "2018-12-03T07:04:33", "url": "https://files.pythonhosted.org/packages/32/dc/7a0ea60e97a3c09ac428d66c6b023969b13c92b773c02eb406a200cf8792/PySCIPOpt-2.1.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "fbe0e4390784ba0f80e78a43d73323b6", "sha256": "95f4ffe7251c429adc09a0b3a95628c400caebe47f3bafcb574e4da0cd554b9a" }, "downloads": -1, "filename": "PySCIPOpt-2.1.0.tar.gz", "has_sig": false, "md5_digest": "fbe0e4390784ba0f80e78a43d73323b6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 514033, "upload_time": "2018-12-03T06:55:45", "url": "https://files.pythonhosted.org/packages/0c/01/e96b36f9ccfb5442d5adf20cfd3ee22d5aa7690468e5dbe086e97b332092/PySCIPOpt-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "4b082a655d7d7a39064da7e39aa70879", "sha256": "9a7964c5c1939c0d24091480e682c6fc66cd02c97a741effd65ce4b6c2712746" }, "downloads": -1, "filename": "PySCIPOpt-2.1.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "4b082a655d7d7a39064da7e39aa70879", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 519991, "upload_time": "2019-01-16T09:43:00", "url": "https://files.pythonhosted.org/packages/8f/1f/85bcd88da4a2c658731561745a5a5b9620241f5c5e5987b5b10f9d0cee60/PySCIPOpt-2.1.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "11ac1fb1601a2f6b1d81caefdfe471b0", "sha256": "e5d706b786def312657a47dd56aa2587011fe82cf67e4693e4d911fdf7de8854" }, "downloads": -1, "filename": "PySCIPOpt-2.1.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "11ac1fb1601a2f6b1d81caefdfe471b0", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 493810, "upload_time": "2019-01-16T09:44:48", "url": "https://files.pythonhosted.org/packages/d1/d9/9da8755f49d0e8d7516253a04ba818279ab176ffdd1bc10d988cac8f617c/PySCIPOpt-2.1.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "19fb12afe015e9e1cc3633e82bf0f150", "sha256": "a2bc456626d4816167a860de3286faf0f24f306247ab77ee5f34f5650a660236" }, "downloads": -1, "filename": "PySCIPOpt-2.1.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "19fb12afe015e9e1cc3633e82bf0f150", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 535709, "upload_time": "2019-01-16T09:47:28", "url": "https://files.pythonhosted.org/packages/84/ad/c0dcc928b6bb6d777a26d1b68df8fc6cf7ac34ad351e233f00b34fe7cb37/PySCIPOpt-2.1.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "0737074ac31fcaad338de7ef4920dc6f", "sha256": "6da2f87cb56f386b8650067f6c0ef00ac11c6ae1a5dc8c7a8f0e855ee6a62463" }, "downloads": -1, "filename": "PySCIPOpt-2.1.1.tar.gz", "has_sig": false, "md5_digest": "0737074ac31fcaad338de7ef4920dc6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 515110, "upload_time": "2019-01-16T09:39:33", "url": "https://files.pythonhosted.org/packages/fe/56/04651b865bf5ab41fd5108088129a6045e1e79757541a05d92264f878f6c/PySCIPOpt-2.1.1.tar.gz" } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "f7e6034451a389f12b921d04e520ec1b", "sha256": "342a37a2e74e26a327fe2654055cadd79bf77b45c54486e1932798ea6ac06519" }, "downloads": -1, "filename": "PySCIPOpt-2.1.2-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "f7e6034451a389f12b921d04e520ec1b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 524785, "upload_time": "2019-02-11T17:16:22", "url": "https://files.pythonhosted.org/packages/d4/c1/2aba72e1b9a974b6d081da73c18d81a2abbc07095735a1538b26a56a33f2/PySCIPOpt-2.1.2-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "e2671e27043d6192e5d84982b01d4104", "sha256": "fd6497eb687ebce00fe8c820ae61581a7e196975e02cdcf6d0151b683b29f4a1" }, "downloads": -1, "filename": "PySCIPOpt-2.1.2-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "e2671e27043d6192e5d84982b01d4104", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 498850, "upload_time": "2019-02-11T17:19:35", "url": "https://files.pythonhosted.org/packages/de/07/afc6c61b5d8c77d18bf13358a360ea39cdc89931e3c89cd4465ea6242fe4/PySCIPOpt-2.1.2-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "e47368d2a7553787c7ba798ff130fe47", "sha256": "2f27dad89a5d848ad22bc962ec01a95fafae3e3f18963f9cb4535c1d4a3ad8bd" }, "downloads": -1, "filename": "PySCIPOpt-2.1.2-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "e47368d2a7553787c7ba798ff130fe47", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 541524, "upload_time": "2019-02-11T17:22:13", "url": "https://files.pythonhosted.org/packages/f1/9f/67da2dfe9dcc104248d23068a51dc92af4d01e5fe6a6b81c8fce1be7902e/PySCIPOpt-2.1.2-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "39105dfa4064132ddc83fda0cf4615fc", "sha256": "146026acc96d0c2b57ea0cfb4ee911f4f231195b7779c09f60febfcba42e47ac" }, "downloads": -1, "filename": "PySCIPOpt-2.1.2.tar.gz", "has_sig": false, "md5_digest": "39105dfa4064132ddc83fda0cf4615fc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 520385, "upload_time": "2019-02-11T17:09:10", "url": "https://files.pythonhosted.org/packages/c9/53/b50a114eab5d17a4aa91993971e308a551748194a043a8b13e7df79053b3/PySCIPOpt-2.1.2.tar.gz" } ], "2.1.3": [ { "comment_text": "", "digests": { "md5": "2a57270d779ce684cbee0653135b5697", "sha256": "dfe17b2c3648c85448fdccc201dc6da37cc5053e05c7ae187120783e74a4a7ae" }, "downloads": -1, "filename": "PySCIPOpt-2.1.3-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "2a57270d779ce684cbee0653135b5697", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 537302, "upload_time": "2019-03-10T15:16:10", "url": "https://files.pythonhosted.org/packages/de/cf/ca52296edff06ecfc8b9f30596a28da9fc33d48feccaf63806b089c45264/PySCIPOpt-2.1.3-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "738ec5293fec116be6338da1baff13a8", "sha256": "d2f73bd11215c13a1c43e5295a5fd8e00fd8ce2d8f154ed3a57b00ba1a30c952" }, "downloads": -1, "filename": "PySCIPOpt-2.1.3-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "738ec5293fec116be6338da1baff13a8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 511187, "upload_time": "2019-03-10T15:18:10", "url": "https://files.pythonhosted.org/packages/d0/8c/220fac5caa46e94c27b1360f05bccb1f9a73875e936921ccaa5f30c9d712/PySCIPOpt-2.1.3-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c9039b18af819807e4721674c324bd33", "sha256": "737635aeddd6dd7f1c9426688fb4025cc8e52e789f83c269084cef7aa6ad7bb0" }, "downloads": -1, "filename": "PySCIPOpt-2.1.3-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "c9039b18af819807e4721674c324bd33", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 554552, "upload_time": "2019-03-10T15:19:45", "url": "https://files.pythonhosted.org/packages/48/56/5222b65f4dbb9e9ceb6a65b8caaf64b2b241061155836bdd71be7d16b7a3/PySCIPOpt-2.1.3-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ee477ab08a0101470a6762a3073ef79d", "sha256": "98521db444e890216a2f2ba1ab597780e0a3c6c707011933d6efda711a5dcc35" }, "downloads": -1, "filename": "PySCIPOpt-2.1.3.tar.gz", "has_sig": false, "md5_digest": "ee477ab08a0101470a6762a3073ef79d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 534225, "upload_time": "2019-03-10T15:02:59", "url": "https://files.pythonhosted.org/packages/07/f3/a99269a7ecfef393f50acaa9cb868575fd07c95dd79e3236f5bcac541c3a/PySCIPOpt-2.1.3.tar.gz" } ], "2.1.4": [ { "comment_text": "", "digests": { "md5": "993e55061a568bca0a9f961d56ae8af1", "sha256": "3f4d9be8f4408bc6b2bcf8aefd18adb5624a329997271122a734572b2955a7e9" }, "downloads": -1, "filename": "PySCIPOpt-2.1.4-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "993e55061a568bca0a9f961d56ae8af1", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 541037, "upload_time": "2019-03-15T11:35:31", "url": "https://files.pythonhosted.org/packages/e1/37/0be5a05d559dbe650d593b91ea6fecd3048607e0e68afe10c383210a1688/PySCIPOpt-2.1.4-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f1982da24fd3e82d4305f5208ae85ed7", "sha256": "b8516e47e8c49b24a6fd18a589dcfb13063b4b0ceeb4bdb1ffcdb1edb3cef97b" }, "downloads": -1, "filename": "PySCIPOpt-2.1.4-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "f1982da24fd3e82d4305f5208ae85ed7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 515384, "upload_time": "2019-03-15T11:37:21", "url": "https://files.pythonhosted.org/packages/8f/c6/10cc3624a7346f9dab5054f7e2b9df4d6f4820bb467a2615d6757b14841b/PySCIPOpt-2.1.4-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "32e6c3c5f2fb8c71516212317109ecbc", "sha256": "829346cb44c7473a76b7bf35ac0b934162dfab644e79b202eae54749d6255429" }, "downloads": -1, "filename": "PySCIPOpt-2.1.4-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "32e6c3c5f2fb8c71516212317109ecbc", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 557796, "upload_time": "2019-03-15T11:39:18", "url": "https://files.pythonhosted.org/packages/f3/77/e48754eea22762a25eaffee87848ea18cde6537b48510de611ef16cb2d96/PySCIPOpt-2.1.4-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "4322bb302769a49f999483b452192d29", "sha256": "9e80b17f1ae4aaf1e2cf819bfc83ad6c3daeaf405f5d9fd35815d71629c81419" }, "downloads": -1, "filename": "PySCIPOpt-2.1.4.tar.gz", "has_sig": false, "md5_digest": "4322bb302769a49f999483b452192d29", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 537508, "upload_time": "2019-03-15T11:27:50", "url": "https://files.pythonhosted.org/packages/20/ef/599697a056bd30ff346484ef4df750a1117273209c3ec63f9d814e6343fb/PySCIPOpt-2.1.4.tar.gz" } ], "2.1.5": [ { "comment_text": "", "digests": { "md5": "172d554298384fd854921908e011e4c2", "sha256": "cc4ff4ee84c2d10c9eb6b24257b8504f5f1cce13476c7c030b58391afe00578c" }, "downloads": -1, "filename": "PySCIPOpt-2.1.5-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "172d554298384fd854921908e011e4c2", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 549923, "upload_time": "2019-03-25T16:27:09", "url": "https://files.pythonhosted.org/packages/4d/b8/896bcb318d7905739073d84be93373b355d6e23840c40d9ba0e1461ed733/PySCIPOpt-2.1.5-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f968e56b86f8708937821c072c3c43f7", "sha256": "d8bad46e75ec56dfd5a0a2b1c4057eda05f5f1ec90fcf7fc2b582a28e7a99ab3" }, "downloads": -1, "filename": "PySCIPOpt-2.1.5-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "f968e56b86f8708937821c072c3c43f7", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 523949, "upload_time": "2019-03-25T16:29:53", "url": "https://files.pythonhosted.org/packages/27/a7/392155eaf5c467bd25e185cc52c6851fccf688620b375ba2ffc331c47210/PySCIPOpt-2.1.5-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "312ad4b29ed0b255e51e9b5ac2979faa", "sha256": "e72fa7792cb4930e62581811314db013eb5bf0ef9935c1938b70411d3d11ee91" }, "downloads": -1, "filename": "PySCIPOpt-2.1.5-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "312ad4b29ed0b255e51e9b5ac2979faa", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 567946, "upload_time": "2019-03-25T16:32:37", "url": "https://files.pythonhosted.org/packages/91/d5/07ee1617d7b159362f254d1e5ae78707eec2a747cc86f283078832d5606d/PySCIPOpt-2.1.5-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "ec83708e1af9532295f521b23d81f5ed", "sha256": "70abcd484c7ad4bb1c06bb856273e9c7eb386da25c333c955b06ed1534d34246" }, "downloads": -1, "filename": "PySCIPOpt-2.1.5.tar.gz", "has_sig": false, "md5_digest": "ec83708e1af9532295f521b23d81f5ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 546450, "upload_time": "2019-03-25T16:21:29", "url": "https://files.pythonhosted.org/packages/69/70/47e54237391ef992abb956f49736b7c9bce1f32bcbccb116a3148f324469/PySCIPOpt-2.1.5.tar.gz" } ], "2.1.6": [ { "comment_text": "", "digests": { "md5": "02c228be621b3886c376a17f29cd5151", "sha256": "8964a9c025f4b67be364b4492b25d8a633ea8922d4ae2cffd909ad69a7d47ccf" }, "downloads": -1, "filename": "PySCIPOpt-2.1.6-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "02c228be621b3886c376a17f29cd5151", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 560097, "upload_time": "2019-06-14T12:50:22", "url": "https://files.pythonhosted.org/packages/41/a8/2c70a61a5318712d4c8f8e234cd7b5444f06db30836a7f3db4e6d3afe130/PySCIPOpt-2.1.6-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "70763a7aa1022949f7e76f72c8db5309", "sha256": "c7d2dd9416eef71e64f7a059437f9ddb93b345c899ff82b11853522d83634673" }, "downloads": -1, "filename": "PySCIPOpt-2.1.6-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "70763a7aa1022949f7e76f72c8db5309", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 534737, "upload_time": "2019-06-14T12:52:59", "url": "https://files.pythonhosted.org/packages/9a/b4/37399b8b57fbea2dc56b2ee5addbcb0f46075e3ea9d299bf7de772e28264/PySCIPOpt-2.1.6-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "5326e8406c041d6b9022bdd8880181f4", "sha256": "aac37abefd5ba816f28b9dd47348969e2e9a522c5688cb9fe58f7cbf7183aafd" }, "downloads": -1, "filename": "PySCIPOpt-2.1.6-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "5326e8406c041d6b9022bdd8880181f4", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 578867, "upload_time": "2019-06-14T12:55:24", "url": "https://files.pythonhosted.org/packages/98/0e/911fdc56f753a15e3a12dc3291816324deebf4075f206bb4e0a7adaf7361/PySCIPOpt-2.1.6-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "d6dcf49b5653759b1f30c88d11348632", "sha256": "45b88efec967f5ef8a92c69c57c485e0c584a501d474cdd11e7b5885bbc0ab4e" }, "downloads": -1, "filename": "PySCIPOpt-2.1.6.tar.gz", "has_sig": false, "md5_digest": "d6dcf49b5653759b1f30c88d11348632", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 560248, "upload_time": "2019-06-14T12:42:59", "url": "https://files.pythonhosted.org/packages/d2/04/c3c940e4dbc91b3dd97718a2c8482af8948d931945a8b9ddd42cfa618ad3/PySCIPOpt-2.1.6.tar.gz" } ], "2.1.7": [ { "comment_text": "", "digests": { "md5": "5b76610f48c4463aeb3f53948e745423", "sha256": "b8038a40fd4792873a2d0f80c70bcd6a55c91af1360b7c31d3e27d23d59a9e9b" }, "downloads": -1, "filename": "PySCIPOpt-2.1.7-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "5b76610f48c4463aeb3f53948e745423", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 560302, "upload_time": "2019-08-09T08:51:13", "url": "https://files.pythonhosted.org/packages/75/fc/5796fb5ea1bb4ebfa883f9214a0e8d62f2df228631b5b467d1f053cedd13/PySCIPOpt-2.1.7-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "710c427b5839d795a5bce67bbda789a8", "sha256": "2bbd11a0ea5511af588bed850fc140378c1d39530710051889569947bba07d61" }, "downloads": -1, "filename": "PySCIPOpt-2.1.7-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "710c427b5839d795a5bce67bbda789a8", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 534623, "upload_time": "2019-08-09T08:53:14", "url": "https://files.pythonhosted.org/packages/73/2c/185e4389126e90de87c114e9e322e1cabb6384a5e581502c05608d9c91b5/PySCIPOpt-2.1.7-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "413b973d8fd511b7d352af9884884a2c", "sha256": "2855aa4e0de3d3d2a7ebd58d223bc2ed1c7a8dbf8948c80423cb222cc066f513" }, "downloads": -1, "filename": "PySCIPOpt-2.1.7-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "413b973d8fd511b7d352af9884884a2c", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 578902, "upload_time": "2019-08-09T08:54:57", "url": "https://files.pythonhosted.org/packages/b3/d7/18f60a8e8fb1db0c6d0852f996e496a08ad8b7ebfa352d3a73efe280b846/PySCIPOpt-2.1.7-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "fa22b2d00987a27410c864b598fb65da", "sha256": "9db1caf5d23ca89091969ca903aa4a92492e23cb260f0fe3e841bb852036b651" }, "downloads": -1, "filename": "PySCIPOpt-2.1.7.tar.gz", "has_sig": false, "md5_digest": "fa22b2d00987a27410c864b598fb65da", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 559951, "upload_time": "2019-08-09T08:46:47", "url": "https://files.pythonhosted.org/packages/45/ff/23127dff9731b3ae1951e1ff2be31bb6831ff040ab304346ba1593f69f4a/PySCIPOpt-2.1.7.tar.gz" } ], "2.1.8": [ { "comment_text": "", "digests": { "md5": "6835a4ce0263c218b3cfa1c6f8fe633e", "sha256": "56117906e3fc0431d4afc04da035886825c7b713a66a2317a44537233f693485" }, "downloads": -1, "filename": "PySCIPOpt-2.1.8-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "6835a4ce0263c218b3cfa1c6f8fe633e", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 560579, "upload_time": "2019-08-19T10:16:36", "url": "https://files.pythonhosted.org/packages/31/4d/697ea1a00d77731b2f95f2e7dde1401d0d6f82c35d0fc371d7a21275e82a/PySCIPOpt-2.1.8-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "a73166fad97691531545e5a7e63da7a4", "sha256": "93c9462906a4464e52e2466493ee4c77b7abe210f3f96679c79a90332c1b6ea3" }, "downloads": -1, "filename": "PySCIPOpt-2.1.8-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "a73166fad97691531545e5a7e63da7a4", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 535004, "upload_time": "2019-08-19T10:18:28", "url": "https://files.pythonhosted.org/packages/c9/b4/0f4d38bca547a4edb1da73b2da13c6a7db5b77db23044f2afc87fc00be11/PySCIPOpt-2.1.8-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "249d15d8321728783966553fa0b6fd8b", "sha256": "63cc01e6ee0d358b2d6dfb4b87183856ce26bea5aa7fa3abfce3a50766ec2844" }, "downloads": -1, "filename": "PySCIPOpt-2.1.8-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "249d15d8321728783966553fa0b6fd8b", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 579204, "upload_time": "2019-08-19T10:20:04", "url": "https://files.pythonhosted.org/packages/c9/21/d5dd4509143f87dde6e6002864fea82c167ea46760787912cf23ea5bc543/PySCIPOpt-2.1.8-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "c770393e431ea6b32be91ce4c270bb60", "sha256": "97f12fae64f314ba83acc4582d39ce3253285018550a192817da9af3aa02a2d1" }, "downloads": -1, "filename": "PySCIPOpt-2.1.8.tar.gz", "has_sig": false, "md5_digest": "c770393e431ea6b32be91ce4c270bb60", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 560504, "upload_time": "2019-08-19T10:13:40", "url": "https://files.pythonhosted.org/packages/24/e3/fce4f55ccba987110c14465cac36a80dd636317480cc632c5671289592a3/PySCIPOpt-2.1.8.tar.gz" } ], "2.1.9": [ { "comment_text": "", "digests": { "md5": "d0ec7fef38e170ae61470b9eece5276b", "sha256": "785305ffaa47fa98c24111e8bef536450628af36dbacfb5b7397a7addba1e4e7" }, "downloads": -1, "filename": "PySCIPOpt-2.1.9-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "d0ec7fef38e170ae61470b9eece5276b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 560217, "upload_time": "2019-08-20T13:04:32", "url": "https://files.pythonhosted.org/packages/67/e3/9a66abd4d413cf580e21fc65276d07b6987d4582d0367a698f7a005807cc/PySCIPOpt-2.1.9-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "f86d9a397c2c7cab17698d1691fed0ef", "sha256": "aa3daa22a16784552e5ab2cfb33eea9e1825ceaf3df267bac7f472fa6c52e37a" }, "downloads": -1, "filename": "PySCIPOpt-2.1.9-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "f86d9a397c2c7cab17698d1691fed0ef", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 535007, "upload_time": "2019-08-20T13:07:49", "url": "https://files.pythonhosted.org/packages/53/7f/4f9d93629634f752ad8a5aa80dcf0112fc222c6b1cea5d5a4d4e2350d652/PySCIPOpt-2.1.9-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "7b0613d86f5799a7337c557c81e1d4ae", "sha256": "4bb88728bb6b4df76b66def1d2c4a7796105f2bd453643cd1f98b1fc7b6b65ef" }, "downloads": -1, "filename": "PySCIPOpt-2.1.9-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "7b0613d86f5799a7337c557c81e1d4ae", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 579202, "upload_time": "2019-08-20T13:11:35", "url": "https://files.pythonhosted.org/packages/22/80/973194497f885792540477b0f23847604dc6d56bddd680086756cac97cbd/PySCIPOpt-2.1.9-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "fd97da58e28892ffdba79816a3141946", "sha256": "b81156548ed0995ad5f2bc70842a21525b05be8a20550fd8fa8dc61c82aeac45" }, "downloads": -1, "filename": "PySCIPOpt-2.1.9.tar.gz", "has_sig": false, "md5_digest": "fd97da58e28892ffdba79816a3141946", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 560504, "upload_time": "2019-08-20T12:56:44", "url": "https://files.pythonhosted.org/packages/c1/47/ec7e00b320cddd291700225b6d02fd99667eb91339052e7a918e7061b00c/PySCIPOpt-2.1.9.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "df16174512cc70671a17f18eae43f14b", "sha256": "7191c84ea64ceef3e978262986219f82607c2088cb55c17908ec5ad4e0a1f992" }, "downloads": -1, "filename": "PySCIPOpt-2.2.0-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "df16174512cc70671a17f18eae43f14b", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 563475, "upload_time": "2019-08-28T10:18:39", "url": "https://files.pythonhosted.org/packages/48/2c/0d1c72a06ba24c023c435e799b87c5120865ee1e6b858d5f30fc90aca80d/PySCIPOpt-2.2.0-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "fcd74b716f2386ceae03f37c8b59063a", "sha256": "1328fe09971e25fbfabc94c564e7165696483df6475f1eb8beacaee051b4ee7a" }, "downloads": -1, "filename": "PySCIPOpt-2.2.0-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "fcd74b716f2386ceae03f37c8b59063a", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 537422, "upload_time": "2019-08-28T10:21:10", "url": "https://files.pythonhosted.org/packages/42/ae/d5b76758ab49449d11504026c76a5f21f4e724576c33e9e087a73720f5d3/PySCIPOpt-2.2.0-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "d9eaa5eebea74af3c3fd444dfb17e7f3", "sha256": "d49c18fb5ff17dc0d1e173e4609f979fa07b9623592d67cb73abc54032830ba4" }, "downloads": -1, "filename": "PySCIPOpt-2.2.0-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "d9eaa5eebea74af3c3fd444dfb17e7f3", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 582186, "upload_time": "2019-08-28T10:23:38", "url": "https://files.pythonhosted.org/packages/d6/61/2ec66f642e33abbc33421d2d207f25d5371b215f8d8c68e4788253f73005/PySCIPOpt-2.2.0-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "3508baf9c580d6a292665add274ddcbc", "sha256": "0fb5baf4d361f78aecbf8189dc10b50eb9258dd92a67430275e4b4062f04500c" }, "downloads": -1, "filename": "PySCIPOpt-2.2.0.tar.gz", "has_sig": false, "md5_digest": "3508baf9c580d6a292665add274ddcbc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 564117, "upload_time": "2019-08-28T10:07:32", "url": "https://files.pythonhosted.org/packages/a7/47/e3d5fcc37138c0eb9695d7c26e22b999c1274b06606db183c2aa36f98e5a/PySCIPOpt-2.2.0.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "b08c5146fe8607c8ea052a0841a3ce58", "sha256": "59352d55249a5b93b9ed68891ed417c317c9130133743340ef5cdc0df6b3b7ea" }, "downloads": -1, "filename": "PySCIPOpt-2.2.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "b08c5146fe8607c8ea052a0841a3ce58", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 567258, "upload_time": "2019-09-17T17:42:13", "url": "https://files.pythonhosted.org/packages/fc/41/277c40f2ead042f8ace149024aacc0a9d9f13e9dd68d025f7c4b83f4db4f/PySCIPOpt-2.2.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "66ea2839fa0f997ef369ca836a86333b", "sha256": "9edc72213a678f5c0c8826ee32a7b43f9d7f9e551f2e6cd032c8961d517887da" }, "downloads": -1, "filename": "PySCIPOpt-2.2.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "66ea2839fa0f997ef369ca836a86333b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 540076, "upload_time": "2019-09-17T17:44:32", "url": "https://files.pythonhosted.org/packages/20/a9/d1cbf443c89491ccee1f62bf3ea8c79373813a2841ea4b12521a2e61bddd/PySCIPOpt-2.2.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "37192e5b9319cd56a12e2481951944e1", "sha256": "d55b478dc5b37e835587cbecae40155d5ee8fce70638f8d20e7a843cf988ad6e" }, "downloads": -1, "filename": "PySCIPOpt-2.2.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "37192e5b9319cd56a12e2481951944e1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 585312, "upload_time": "2019-09-17T17:46:40", "url": "https://files.pythonhosted.org/packages/62/94/8b52b73d5e28dbfd57fc37a8d12a4221e540f72bf97fa776804cb9b85346/PySCIPOpt-2.2.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "9cd7b7499f0acaf3509ef1ea385cd13d", "sha256": "1a159274c2dfe666e304a963280e2a15955c883d551520e41294dd1907d93a96" }, "downloads": -1, "filename": "PySCIPOpt-2.2.1.tar.gz", "has_sig": false, "md5_digest": "9cd7b7499f0acaf3509ef1ea385cd13d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 567335, "upload_time": "2019-09-17T17:33:46", "url": "https://files.pythonhosted.org/packages/1b/d1/8e726d079ca6f4c3f578bf88e1fa4a8cf45e03627cc13ee8003fb8712f28/PySCIPOpt-2.2.1.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "b08c5146fe8607c8ea052a0841a3ce58", "sha256": "59352d55249a5b93b9ed68891ed417c317c9130133743340ef5cdc0df6b3b7ea" }, "downloads": -1, "filename": "PySCIPOpt-2.2.1-cp27-cp27m-win_amd64.whl", "has_sig": false, "md5_digest": "b08c5146fe8607c8ea052a0841a3ce58", "packagetype": "bdist_wheel", "python_version": "cp27", "requires_python": null, "size": 567258, "upload_time": "2019-09-17T17:42:13", "url": "https://files.pythonhosted.org/packages/fc/41/277c40f2ead042f8ace149024aacc0a9d9f13e9dd68d025f7c4b83f4db4f/PySCIPOpt-2.2.1-cp27-cp27m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "66ea2839fa0f997ef369ca836a86333b", "sha256": "9edc72213a678f5c0c8826ee32a7b43f9d7f9e551f2e6cd032c8961d517887da" }, "downloads": -1, "filename": "PySCIPOpt-2.2.1-cp35-cp35m-win_amd64.whl", "has_sig": false, "md5_digest": "66ea2839fa0f997ef369ca836a86333b", "packagetype": "bdist_wheel", "python_version": "cp35", "requires_python": null, "size": 540076, "upload_time": "2019-09-17T17:44:32", "url": "https://files.pythonhosted.org/packages/20/a9/d1cbf443c89491ccee1f62bf3ea8c79373813a2841ea4b12521a2e61bddd/PySCIPOpt-2.2.1-cp35-cp35m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "37192e5b9319cd56a12e2481951944e1", "sha256": "d55b478dc5b37e835587cbecae40155d5ee8fce70638f8d20e7a843cf988ad6e" }, "downloads": -1, "filename": "PySCIPOpt-2.2.1-cp36-cp36m-win_amd64.whl", "has_sig": false, "md5_digest": "37192e5b9319cd56a12e2481951944e1", "packagetype": "bdist_wheel", "python_version": "cp36", "requires_python": null, "size": 585312, "upload_time": "2019-09-17T17:46:40", "url": "https://files.pythonhosted.org/packages/62/94/8b52b73d5e28dbfd57fc37a8d12a4221e540f72bf97fa776804cb9b85346/PySCIPOpt-2.2.1-cp36-cp36m-win_amd64.whl" }, { "comment_text": "", "digests": { "md5": "9cd7b7499f0acaf3509ef1ea385cd13d", "sha256": "1a159274c2dfe666e304a963280e2a15955c883d551520e41294dd1907d93a96" }, "downloads": -1, "filename": "PySCIPOpt-2.2.1.tar.gz", "has_sig": false, "md5_digest": "9cd7b7499f0acaf3509ef1ea385cd13d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 567335, "upload_time": "2019-09-17T17:33:46", "url": "https://files.pythonhosted.org/packages/1b/d1/8e726d079ca6f4c3f578bf88e1fa4a8cf45e03627cc13ee8003fb8712f28/PySCIPOpt-2.2.1.tar.gz" } ] }