{ "info": { "author": "Mozilla Taskcluster and Release Engineering", "author_email": "release+python@mozilla.com", "bugtrack_url": null, "classifiers": [ "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9" ], "description": "# Taskcluster Client for Python\n\n[![Download](https://img.shields.io/badge/pypi-taskcluster-brightgreen)](https://pypi.python.org/pypi/taskcluster)\n[![License](https://img.shields.io/badge/license-MPL%202.0-orange.svg)](http://mozilla.org/MPL/2.0)\n\n**A Taskcluster client library for Python.**\n\nThis library is a complete interface to Taskcluster in Python. It provides\nboth synchronous and asynchronous interfaces for all Taskcluster API methods.\n\n## Usage\n\nFor a general guide to using Taskcluster clients, see [Calling Taskcluster APIs](https://docs.taskcluster.net/docs/manual/using/api).\n\n### Setup\n\nBefore calling an API end-point, you'll need to create a client instance.\nThere is a class for each service, e.g., `Queue` and `Auth`. Each takes the\nsame options, described below. Note that only `rootUrl` is\nrequired, and it's unusual to configure any other options aside from\n`credentials`.\n\nFor each service, there are sync and async variants. The classes under\n`taskcluster` (e.g., `taskcluster.Queue`) operate synchronously. The classes\nunder `taskcluster.aio` (e.g., `taskcluster.aio.Queue`) are asynchronous.\n\n#### Authentication Options\n\nHere is a simple set-up of an Index client:\n\n```python\nimport taskcluster\nindex = taskcluster.Index({\n 'rootUrl': 'https://tc.example.com',\n 'credentials': {'clientId': 'id', 'accessToken': 'accessToken'},\n})\n```\n\nThe `rootUrl` option is required as it gives the Taskcluster deployment to\nwhich API requests should be sent. Credentials are only required if the\nrequest is to be authenticated -- many Taskcluster API methods do not require\nauthentication.\n\nIn most cases, the root URL and Taskcluster credentials should be provided in [standard environment variables](https://docs.taskcluster.net/docs/manual/design/env-vars). Use `taskcluster.optionsFromEnvironment()` to read these variables automatically:\n\n```python\nauth = taskcluster.Auth(taskcluster.optionsFromEnvironment())\n```\n\nNote that this function does not respect `TASKCLUSTER_PROXY_URL`. To use the Taskcluster Proxy from within a task:\n\n```python\nauth = taskcluster.Auth({'rootUrl': os.environ['TASKCLUSTER_PROXY_URL']})\n```\n\n#### Authorized Scopes\n\nIf you wish to perform requests on behalf of a third-party that has small set\nof scopes than you do. You can specify [which scopes your request should be\nallowed to\nuse](https://docs.taskcluster.net/docs/manual/design/apis/hawk/authorized-scopes),\nin the `authorizedScopes` option.\n\n```python\nopts = taskcluster.optionsFromEnvironment()\nopts['authorizedScopes'] = ['queue:create-task:highest:my-provisioner/my-worker-type']\nqueue = taskcluster.Queue(opts)\n```\n\n#### Other Options\n\nThe following additional options are accepted when constructing a client object:\n\n* `signedUrlExpiration` - default value for the `expiration` argument to `buildSignedUrl`\n* `maxRetries` - maximum number of times to retry a failed request\n\n### Calling API Methods\n\nAPI methods are available as methods on the corresponding client object. For\nsync clients, these are sync methods, and for async clients they are async\nmethods; the calling convention is the same in either case.\n\nThere are four calling conventions for methods:\n\n```python\nclient.method(v1, v1, payload)\nclient.method(payload, k1=v1, k2=v2)\nclient.method(payload=payload, query=query, params={k1: v1, k2: v2})\nclient.method(v1, v2, payload=payload, query=query)\n```\n\nHere, `v1` and `v2` are URL parameters (named `k1` and `k2`), `payload` is the\nrequest payload, and `query` is a dictionary of query arguments.\n\nFor example, in order to call an API method with query-string arguments:\n\n```python\nawait queue.listTaskGroup('JzTGxwxhQ76_Tt1dxkaG5g',\n query={'continuationToken': previousResponse.get('continuationToken')})\n```\n\n\n### Generating URLs\n\nIt is often necessary to generate the URL for an API method without actually calling the method.\nTo do so, use `buildUrl` or, for an API method that requires authentication, `buildSignedUrl`.\n\n```python\nimport taskcluster\n\nindex = taskcluster.Index(taskcluster.optionsFromEnvironment())\nprint(index.buildUrl('findTask', 'builds.v1.latest'))\nsecrets = taskcluster.Secrets(taskcluster.optionsFromEnvironment())\nprint(secret.buildSignedUrl('get', 'my-secret'))\n```\n\nNote that signed URLs are time-limited; the expiration can be set with the `signedUrlExpiration` option to the client constructor, or with the `expiration` keyword arguement to `buildSignedUrl`, both given in seconds.\n\n### Generating Temporary Credentials\n\nIf you have non-temporary taskcluster credentials you can generate a set of\n[temporary credentials](https://docs.taskcluster.net/docs/manual/design/apis/hawk/temporary-credentials) as follows. Notice that the credentials cannot last more\nthan 31 days, and you can only revoke them by revoking the credentials that was\nused to issue them (this takes up to one hour).\n\nIt is not the responsibility of the caller to apply any clock drift adjustment\nto the start or expiry time - this is handled by the auth service directly.\n\n```python\nimport datetime\n\nstart = datetime.datetime.now()\nexpiry = start + datetime.timedelta(0,60)\nscopes = ['ScopeA', 'ScopeB']\nname = 'foo'\n\ncredentials = taskcluster.createTemporaryCredentials(\n # issuing clientId\n clientId,\n # issuing accessToken\n accessToken,\n # Validity of temporary credentials starts here, in timestamp\n start,\n # Expiration of temporary credentials, in timestamp\n expiry,\n # Scopes to grant the temporary credentials\n scopes,\n # credential name (optional)\n name\n)\n```\n\nYou cannot use temporary credentials to issue new temporary credentials. You\nmust have `auth:create-client:` to create a named temporary credential,\nbut unnamed temporary credentials can be created regardless of your scopes.\n\n### Handling Timestamps\nMany taskcluster APIs require ISO 8601 time stamps offset into the future\nas way of providing expiration, deadlines, etc. These can be easily created\nusing `datetime.datetime.isoformat()`, however, it can be rather error prone\nand tedious to offset `datetime.datetime` objects into the future. Therefore\nthis library comes with two utility functions for this purposes.\n\n```python\ndateObject = taskcluster.fromNow(\"2 days 3 hours 1 minute\")\n # -> datetime.datetime(2017, 1, 21, 17, 8, 1, 607929)\ndateString = taskcluster.fromNowJSON(\"2 days 3 hours 1 minute\")\n # -> '2017-01-21T17:09:23.240178Z'\n```\n\nBy default it will offset the date time into the future, if the offset strings\nare prefixed minus (`-`) the date object will be offset into the past. This is\nuseful in some corner cases.\n\n```python\ndateObject = taskcluster.fromNow(\"- 1 year 2 months 3 weeks 5 seconds\");\n # -> datetime.datetime(2015, 10, 30, 18, 16, 50, 931161)\n```\n\nThe offset string is ignorant of whitespace and case insensitive. It may also\noptionally be prefixed plus `+` (if not prefixed minus), any `+` prefix will be\nignored. However, entries in the offset string must be given in order from\nhigh to low, ie. `2 years 1 day`. Additionally, various shorthands may be\nemployed, as illustrated below.\n\n```\n years, year, yr, y\n months, month, mo\n weeks, week, w\n days, day, d\n hours, hour, h\n minutes, minute, min\n seconds, second, sec, s\n```\n\nThe `fromNow` method may also be given a date to be relative to as a second\nargument. This is useful if offset the task expiration relative to the the task\ndeadline or doing something similar. This argument can also be passed as the\nkwarg `dateObj`\n\n```python\ndateObject1 = taskcluster.fromNow(\"2 days 3 hours\");\ndateObject2 = taskcluster.fromNow(\"1 year\", dateObject1);\ntaskcluster.fromNow(\"1 year\", dateObj=dateObject1);\n # -> datetime.datetime(2018, 1, 21, 17, 59, 0, 328934)\n```\n### Generating SlugIDs\n\nTo generate slugIds (Taskcluster's client-generated unique IDs), use\n`taskcluster.slugId()`, which will return a unique slugId on each call.\n\nIn some cases it is useful to be able to create a mapping from names to\nslugIds, with the ability to generate the same slugId multiple times.\nThe `taskcluster.stableSlugId()` function returns a callable that does\njust this.\n\n```python\ngen = taskcluster.stableSlugId()\nsometask = gen('sometask')\nassert gen('sometask') == sometask # same input generates same output\nassert gen('sometask') != gen('othertask')\n\ngen2 = taskcluster.stableSlugId()\nsometask2 = gen('sometask')\nassert sometask2 != sometask # but different slugId generators produce\n # different output\n```\n\n### Scope Analysis\n\nThe `scopeMatch(assumedScopes, requiredScopeSets)` function determines\nwhether one or more of a set of required scopes are satisfied by the assumed\nscopes, taking *-expansion into account. This is useful for making local\ndecisions on scope satisfaction, but note that `assumed_scopes` must be the\n*expanded* scopes, as this function cannot perform expansion.\n\nIt takes a list of a assumed scopes, and a list of required scope sets on\ndisjunctive normal form, and checks if any of the required scope sets are\nsatisfied.\n\nExample:\n\n```python\nrequiredScopeSets = [\n [\"scopeA\", \"scopeB\"],\n [\"scopeC:*\"]\n]\nassert scopesMatch(['scopeA', 'scopeB'], requiredScopeSets)\nassert scopesMatch(['scopeC:xyz'], requiredScopeSets)\nassert not scopesMatch(['scopeA'], requiredScopeSets)\nassert not scopesMatch(['scopeC'], requiredScopeSets)\n```\n\n### Pagination\n\nMany Taskcluster API methods are paginated. There are two ways to handle\npagination easily with the python client. The first is to implement pagination\nin your code:\n\n```python\nimport taskcluster\nqueue = taskcluster.Queue({'rootUrl': 'https://tc.example.com'})\ni = 0\ntasks = 0\noutcome = queue.listTaskGroup('JzTGxwxhQ76_Tt1dxkaG5g')\nwhile outcome.get('continuationToken'):\n print('Response %d gave us %d more tasks' % (i, len(outcome['tasks'])))\n if outcome.get('continuationToken'):\n outcome = queue.listTaskGroup('JzTGxwxhQ76_Tt1dxkaG5g', query={'continuationToken': outcome.get('continuationToken')})\n i += 1\n tasks += len(outcome.get('tasks', []))\nprint('Task Group %s has %d tasks' % (outcome['taskGroupId'], tasks))\n```\n\nThere's also an experimental feature to support built in automatic pagination\nin the sync client. This feature allows passing a callback as the\n'paginationHandler' keyword-argument. This function will be passed the\nresponse body of the API method as its sole positional arugment.\n\nThis example of the built in pagination shows how a list of tasks could be\nbuilt and then counted:\n\n```python\nimport taskcluster\nqueue = taskcluster.Queue({'rootUrl': 'https://tc.example.com'})\n\nresponses = []\n\ndef handle_page(y):\n print(\"%d tasks fetched\" % len(y.get('tasks', [])))\n responses.append(y)\n\nqueue.listTaskGroup('JzTGxwxhQ76_Tt1dxkaG5g', paginationHandler=handle_page)\n\ntasks = 0\nfor response in responses:\n tasks += len(response.get('tasks', []))\n\nprint(\"%d requests fetch %d tasks\" % (len(responses), tasks))\n```\n\n### Pulse Events\n\nThis library can generate exchange patterns for Pulse messages based on the\nExchanges definitions provded by each service. This is done by instantiating a\n`Events` class and calling a method with the name of the vent.\nOptions for the topic exchange methods can be in the form of either a single\ndictionary argument or keyword arguments. Only one form is allowed.\n\n```python\nfrom taskcluster import client\nqEvt = client.QueueEvents({rootUrl: 'https://tc.example.com'})\n# The following calls are equivalent\nprint(qEvt.taskCompleted({'taskId': 'atask'}))\nprint(qEvt.taskCompleted(taskId='atask'))\n```\n\nNote that the client library does *not* provide support for interfacing with a Pulse server.\n\n### Logging\n\nLogging is set up in `taskcluster/__init__.py`. If the special\n`DEBUG_TASKCLUSTER_CLIENT` environment variable is set, the `__init__.py`\nmodule will set the `logging` module's level for its logger to `logging.DEBUG`\nand if there are no existing handlers, add a `logging.StreamHandler()`\ninstance. This is meant to assist those who do not wish to bother figuring out\nhow to configure the python logging module but do want debug messages\n\n## Uploading and Downloading Objects\n\nThe Object service provides an API for reliable uploads and downloads of large objects.\nThis library provides convenience methods to implement the client portion of those APIs, providing well-tested, resilient upload and download functionality.\nThese methods will negotiate the appropriate method with the object service and perform the required steps to transfer the data.\n\nAll methods are available in both sync and async versions, with identical APIs except for the `async`/`await` keywords.\n\nIn either case, you will need to provide a configured `Object` instance with appropriate credentials for the operation.\n\nNOTE: There is an helper function to upload `s3` artifacts, `taskcluster.helper.upload_artifact`, but it is deprecated as it only supports the `s3` artifact type.\n\n### Uploads\n\nTo upload, use any of the following:\n\n* `await taskcluster.aio.upload.uploadFromBuf(projectId=.., name=.., contentType=.., contentLength=.., uploadId=.., expires=.., maxRetries=.., objectService=.., data=..)` - asynchronously upload data from a buffer full of bytes.\n* `await taskcluster.aio.upload.uploadFromFile(projectId=.., name=.., contentType=.., contentLength=.., uploadId=.., expires=.., maxRetries=.., objectService=.., file=..)` - asynchronously upload data from a standard Python file.\n Note that this is [probably what you want](https://github.com/python/asyncio/wiki/ThirdParty#filesystem), even in an async context.\n* `await taskcluster.aio.upload(projectId=.., name=.., contentType=.., contentLength=.., expires=.., uploadId=.., maxRetries=.., objectService=.., readerFactory=..)` - asynchronously upload data from an async reader factory.\n* `taskcluster.upload.uploadFromBuf(projectId=.., name=.., contentType=.., contentLength=.., expires=.., uploadId=.., maxRetries=.., objectService=.., data=..)` - upload data from a buffer full of bytes.\n* `taskcluster.upload.uploadFromFile(projectId=.., name=.., contentType=.., contentLength=.., expires=.., uploadId=.., maxRetries=.., objectService=.., file=..)` - upload data from a standard Python file.\n* `taskcluster.upload(projectId=.., name=.., contentType=.., contentLength=.., expires=.., uploadId=.., maxRetries=.., objectService=.., readerFactory=..)` - upload data from a sync reader factory.\n\nA \"reader\" is an object with a `read(max_size=-1)` method which reads and returns a chunk of 1 .. `max_size` bytes, or returns an empty string at EOF, async for the async functions and sync for the remainder.\nA \"reader factory\" is an async callable which returns a fresh reader, ready to read the first byte of the object.\nWhen uploads are retried, the reader factory may be called more than once.\n\nThe `uploadId` parameter may be omitted, in which case a new slugId will be generated.\n\n### Downloads\n\nTo download, use any of the following:\n\n* `await taskcluster.aio.download.downloadToBuf(name=.., maxRetries=.., objectService=..)` - asynchronously download an object to an in-memory buffer, returning a tuple (buffer, content-type).\n If the file is larger than available memory, this will crash.\n* `await taskcluster.aio.download.downloadToFile(name=.., maxRetries=.., objectService=.., file=..)` - asynchronously download an object to a standard Python file, returning the content type.\n* `await taskcluster.aio.download.download(name=.., maxRetries=.., objectService=.., writerFactory=..)` - asynchronously download an object to an async writer factory, returning the content type.\n* `taskcluster.download.downloadToBuf(name=.., maxRetries=.., objectService=..)` - download an object to an in-memory buffer, returning a tuple (buffer, content-type).\n If the file is larger than available memory, this will crash.\n* `taskcluster.download.downloadToFile(name=.., maxRetries=.., objectService=.., file=..)` - download an object to a standard Python file, returning the content type.\n* `taskcluster.download.download(name=.., maxRetries=.., objectService=.., writerFactory=..)` - download an object to a sync writer factory, returning the content type.\n\nA \"writer\" is an object with a `write(data)` method which writes the given data, async for the async functions and sync for the remainder.\nA \"writer factory\" is a callable (again either async or sync) which returns a fresh writer, ready to write the first byte of the object.\nWhen uploads are retried, the writer factory may be called more than once.\n\n### Artifact Downloads\n\nArtifacts can be downloaded from the queue service with similar functions to those above.\nThese functions support all of the queue's storage types, raising an error for `error` artifacts.\nIn each case, if `runId` is omitted then the most recent run will be used.\n\n* `await taskcluster.aio.download.downloadArtifactToBuf(taskId=.., runId=.., name=.., maxRetries=.., queueService=..)` - asynchronously download an object to an in-memory buffer, returning a tuple (buffer, content-type).\n If the file is larger than available memory, this will crash.\n* `await taskcluster.aio.download.downloadArtifactToFile(taskId=.., runId=.., name=.., maxRetries=.., queueService=.., file=..)` - asynchronously download an object to a standard Python file, returning the content type.\n* `await taskcluster.aio.download.downloadArtifact(taskId=.., runId=.., name=.., maxRetries=.., queueService=.., writerFactory=..)` - asynchronously download an object to an async writer factory, returning the content type.\n* `taskcluster.download.downloadArtifactToBuf(taskId=.., runId=.., name=.., maxRetries=.., queueService=..)` - download an object to an in-memory buffer, returning a tuple (buffer, content-type).\n If the file is larger than available memory, this will crash.\n* `taskcluster.download.downloadArtifactToFile(taskId=.., runId=.., name=.., maxRetries=.., queueService=.., file=..)` - download an object to a standard Python file, returning the content type.\n* `taskcluster.download.downloadArtifact(taskId=.., runId=.., name=.., maxRetries=.., queueService=.., writerFactory=..)` - download an object to a sync writer factory, returning the content type.\n\n## Integration Helpers\n\nThe Python Taskcluster client has a module `taskcluster.helper` with utilities which allows you to easily share authentication options across multiple services in your project.\n\nGenerally a project using this library will face different use cases and authentication options:\n\n* No authentication for a new contributor without Taskcluster access,\n* Specific client credentials through environment variables on a developer's computer,\n* Taskcluster Proxy when running inside a task.\n\n### Shared authentication\n\nThe class `taskcluster.helper.TaskclusterConfig` is made to be instantiated once in your project, usually in a top level module. That singleton is then accessed by different parts of your projects, whenever a Taskcluster service is needed.\n\nHere is a sample usage:\n\n1. in `project/__init__.py`, no call to Taskcluster is made at that point:\n\n```python\nfrom taskcluster.helper import Taskcluster config\n\ntc = TaskclusterConfig('https://community-tc.services.mozilla.com')\n```\n\n2. in `project/boot.py`, we authenticate on Taskcuster with provided credentials, or environment variables, or taskcluster proxy (in that order):\n\n```python\nfrom project import tc\n\ntc.auth(client_id='XXX', access_token='YYY')\n```\n\n3. at that point, you can load any service using the authenticated wrapper from anywhere in your code:\n\n```python\nfrom project import tc\n\ndef sync_usage():\n queue = tc.get_service('queue')\n queue.ping()\n\nasync def async_usage():\n hooks = tc.get_service('hooks', use_async=True) # Asynchronous service class\n await hooks.ping()\n```\n\nSupported environment variables are:\n- `TASKCLUSTER_ROOT_URL` to specify your Taskcluster instance base url. You can either use that variable or instanciate `TaskclusterConfig` with the base url.\n- `TASKCLUSTER_CLIENT_ID` & `TASKCLUSTER_ACCESS_TOKEN` to specify your client credentials instead of providing them to `TaskclusterConfig.auth`\n- `TASKCLUSTER_PROXY_URL` to specify the proxy address used to reach Taskcluster in a task. It defaults to `http://taskcluster` when not specified.\n\nFor more details on Taskcluster environment variables, [here is the documentation](https://docs.taskcluster.net/docs/manual/design/env-vars).\n\n### Loading secrets across multiple authentications\n\nAnother available utility is `taskcluster.helper.load_secrets` which allows you to retrieve a secret using an authenticated `taskcluster.Secrets` instance (using `TaskclusterConfig.get_service` or the synchronous class directly).\n\nThis utility loads a secret, but allows you to:\n1. share a secret across multiple projects, by using key prefixes inside the secret,\n2. check that some required keys are present in the secret,\n3. provide some default values,\n4. provide a local secret source instead of using the Taskcluster service (useful for local development or sharing _secrets_ with contributors)\n\nLet's say you have a secret on a Taskcluster instance named `project/foo/prod-config`, which is needed by a backend and some tasks. Here is its content:\n\n```yaml\ncommon:\n environment: production\n remote_log: https://log.xx.com/payload\n\nbackend:\n bugzilla_token: XXXX\n\ntask:\n backend_url: https://backend.foo.mozilla.com\n```\n\nIn your backend, you would do:\n\n```python\nfrom taskcluster import Secrets\nfrom taskcluster.helper import load_secrets\n\nprod_config = load_secrets(\n Secrets({...}),\n 'project/foo/prod-config',\n\n # We only need the common & backend parts\n prefixes=['common', 'backend'],\n\n # We absolutely need a bugzilla token to run\n required=['bugzilla_token'],\n\n # Let's provide some default value for the environment\n existing={\n 'environment': 'dev',\n }\n)\n # -> prod_config == {\n # \"environment\": \"production\"\n # \"remote_log\": \"https://log.xx.com/payload\",\n # \"bugzilla_token\": \"XXXX\",\n # }\n```\n\nIn your task, you could do the following using `TaskclusterConfig` mentionned above (the class has a shortcut to use an authenticated `Secrets` service automatically):\n\n```python\nfrom project import tc\n\nprod_config = tc.load_secrets(\n 'project/foo/prod-config',\n\n # We only need the common & bot parts\n prefixes=['common', 'bot'],\n\n # Let's provide some default value for the environment and backend_url\n existing={\n 'environment': 'dev',\n 'backend_url': 'http://localhost:8000',\n }\n)\n # -> prod_config == {\n # \"environment\": \"production\"\n # \"remote_log\": \"https://log.xx.com/payload\",\n # \"backend_url\": \"https://backend.foo.mozilla.com\",\n # }\n```\n\nTo provide local secrets value, you first need to load these values as a dictionary (usually by reading a local file in your format of choice : YAML, JSON, ...) and providing the dictionary to `load_secrets` by using the `local_secrets` parameter:\n\n```python\nimport os\nimport yaml\n\nfrom taskcluster import Secrets\nfrom taskcluster.helper import load_secrets\n\nlocal_path = 'path/to/file.yml'\n\nprod_config = load_secrets(\n Secrets({...}),\n 'project/foo/prod-config',\n\n # We support an optional local file to provide some configuration without reaching Taskcluster\n local_secrets=yaml.safe_load(open(local_path)) if os.path.exists(local_path) else None,\n)\n```\n\n## Compatibility\n\nThis library is co-versioned with Taskcluster itself.\nThat is, a client with version x.y.z contains API methods corresponding to Taskcluster version x.y.z.\nTaskcluster is careful to maintain API compatibility, and guarantees it within a major version.\nThat means that any client with version x.* will work against any Taskcluster services at version x.*, and is very likely to work for many other major versions of the Taskcluster services.\nAny incompatibilities are noted in the [Changelog](https://github.com/taskcluster/taskcluster/blob/main/CHANGELOG.md).\n\n\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/taskcluster/taskcluster", "keywords": "", "license": "", "maintainer": "", "maintainer_email": "", "name": "taskcluster", "package_url": "https://pypi.org/project/taskcluster/", "platform": null, "project_url": "https://pypi.org/project/taskcluster/", "project_urls": { "Homepage": "https://github.com/taskcluster/taskcluster" }, "release_url": "https://pypi.org/project/taskcluster/44.13.6/", "requires_dist": [ "requests (>=2.4.3)", "mohawk (>=0.3.4)", "slugid (>=2)", "taskcluster-urls (>=12.1.0)", "aiohttp (>=3.7.4)", "async-timeout (>=2.0.0)", "pytest ; extra == 'test'", "pytest-cov ; extra == 'test'", "pytest-mock ; extra == 'test'", "pytest-asyncio ; extra == 'test'", "httmock ; extra == 'test'", "mock ; extra == 'test'", "setuptools-lint ; extra == 'test'", "flake8 ; extra == 'test'", "psutil ; extra == 'test'", "hypothesis ; extra == 'test'", "tox ; extra == 'test'", "coverage ; extra == 'test'", "python-dateutil ; extra == 'test'", "aiofiles ; extra == 'test'", "httptest ; extra == 'test'" ], "requires_python": "", "summary": "Python client for Taskcluster", "version": "44.13.6", "yanked": false, "yanked_reason": null }, "last_serial": 13759935, "releases": { "0.0.1": [ { "comment_text": "", "digests": { "md5": "18ba3c5899d974f760d7576660989f8e", "sha256": "caa7674ec0d79e9db26cf3d3d6514d266289b935aa290832f4c642c73bbe28fb" }, "downloads": -1, "filename": "taskcluster-0.0.1.tar.gz", "has_sig": false, "md5_digest": "18ba3c5899d974f760d7576660989f8e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96078, "upload_time": "2016-04-27T15:39:41", "upload_time_iso_8601": "2016-04-27T15:39:41.267864Z", "url": "https://files.pythonhosted.org/packages/be/3e/b1a70bea1f3a57b8641ab406dce3502254a05507ef63a1db7c323a3a56da/taskcluster-0.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.10": [ { "comment_text": "", "digests": { "md5": "066ee92c10d8f40f1c64b1ca0ac50a8f", "sha256": "aad0d88e71e3b845ca30fdfd47d6ace72feb621321ce24419afb27db83860c4c" }, "downloads": -1, "filename": "taskcluster-0.0.10.tar.gz", "has_sig": false, "md5_digest": "066ee92c10d8f40f1c64b1ca0ac50a8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27277, "upload_time": "2015-03-09T15:47:00", "upload_time_iso_8601": "2015-03-09T15:47:00.032960Z", "url": "https://files.pythonhosted.org/packages/96/ef/f384a3215b7286209c95f10a91da76f75d6f06ed4177b23063edec2d3a76/taskcluster-0.0.10.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.11": [ { "comment_text": "", "digests": { "md5": "3806e3851ae2364ac086da258afd51c3", "sha256": "e7e29b4f70ecf28ad94200baeebc05bbb7cc14e57f4e2804a20057255028dd16" }, "downloads": -1, "filename": "taskcluster-0.0.11.tar.gz", "has_sig": false, "md5_digest": "3806e3851ae2364ac086da258afd51c3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27277, "upload_time": "2015-03-09T16:10:46", "upload_time_iso_8601": "2015-03-09T16:10:46.646239Z", "url": "https://files.pythonhosted.org/packages/40/08/54c55e54c7f74cb9609ead833ec4dbb5b46d7e5e449b1d28e59ef5426059/taskcluster-0.0.11.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.13": [ { "comment_text": "", "digests": { "md5": "55bc4186b73c06794435b56f208187ee", "sha256": "ea691b1b59a40e9df4631870afe4738395cc57132b49144e234c3fcd240a2332" }, "downloads": -1, "filename": "taskcluster-0.0.13.tar.gz", "has_sig": false, "md5_digest": "55bc4186b73c06794435b56f208187ee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27277, "upload_time": "2015-03-09T16:24:55", "upload_time_iso_8601": "2015-03-09T16:24:55.451234Z", "url": "https://files.pythonhosted.org/packages/54/82/8a41702b7b6e87a08b5f8fb17036e805ab35c0078fc7813a303166f56b36/taskcluster-0.0.13.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.14": [ { "comment_text": "", "digests": { "md5": "37b37be96bbbf36a58f9bf9b11cd4bf0", "sha256": "0dda0a3bc653ba9452dc2e404e0408d6211207b2fb54a19d6c8a7ae21b9f3705" }, "downloads": -1, "filename": "taskcluster-0.0.14.tar.gz", "has_sig": false, "md5_digest": "37b37be96bbbf36a58f9bf9b11cd4bf0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27339, "upload_time": "2015-03-09T20:58:54", "upload_time_iso_8601": "2015-03-09T20:58:54.844650Z", "url": "https://files.pythonhosted.org/packages/ef/be/e0e083fc954f06a6f6cb95180c243b859b4b0f16661faca377660c4082f5/taskcluster-0.0.14.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.15": [ { "comment_text": "", "digests": { "md5": "7485190145931448991d9bab49c7898d", "sha256": "67602ef0df369753567d659969e61d904d52f754d3af19db5055128712d27d8b" }, "downloads": -1, "filename": "taskcluster-0.0.15.tar.gz", "has_sig": false, "md5_digest": "7485190145931448991d9bab49c7898d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27570, "upload_time": "2015-03-26T20:51:16", "upload_time_iso_8601": "2015-03-26T20:51:16.498456Z", "url": "https://files.pythonhosted.org/packages/ef/90/ee688dd2fac1c0c830cc8563499a045b6870f9a694252e0a48ae69fd6a89/taskcluster-0.0.15.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.16": [ { "comment_text": "", "digests": { "md5": "81ff1386d249eeb0280f725e6e683587", "sha256": "e6ce4193b60ea8e4b1c971ef94568592c7d75cd02c04ab9ea2e35d85f16e3fde" }, "downloads": -1, "filename": "taskcluster-0.0.16.tar.gz", "has_sig": false, "md5_digest": "81ff1386d249eeb0280f725e6e683587", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28178, "upload_time": "2015-04-08T17:19:21", "upload_time_iso_8601": "2015-04-08T17:19:21.886549Z", "url": "https://files.pythonhosted.org/packages/e8/13/b593c602f262af392d695741d8a3f62e0348e1f60587d6fa5c12958039b9/taskcluster-0.0.16.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.17": [ { "comment_text": "", "digests": { "md5": "e5ec693621ed9fb67ec2e0d9d9e4e534", "sha256": "7465482c5702d90b52583448d9389fd441198183295eaddc01707ab15a5e97ef" }, "downloads": -1, "filename": "taskcluster-0.0.17.tar.gz", "has_sig": false, "md5_digest": "e5ec693621ed9fb67ec2e0d9d9e4e534", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31282, "upload_time": "2015-07-02T03:25:26", "upload_time_iso_8601": "2015-07-02T03:25:26.263022Z", "url": "https://files.pythonhosted.org/packages/d8/ce/61f0882ea5b8d597963db185a1d5939587babaf08a72c2c3976c5fa0002c/taskcluster-0.0.17.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.18": [ { "comment_text": "", "digests": { "md5": "6809743652e371e98aa5f9d58c727a6f", "sha256": "3d00b39555abd7587f386f805811c425bd40f2be7e11e9bd55c8efea62b85cb1" }, "downloads": -1, "filename": "taskcluster-0.0.18.tar.gz", "has_sig": false, "md5_digest": "6809743652e371e98aa5f9d58c727a6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31280, "upload_time": "2015-07-02T03:27:56", "upload_time_iso_8601": "2015-07-02T03:27:56.123021Z", "url": "https://files.pythonhosted.org/packages/52/01/b592b59f4490c671016d9afcdb2e1a9444aa8f68084a76da3c60e28de7c1/taskcluster-0.0.18.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.19": [ { "comment_text": "", "digests": { "md5": "5805e2a51969903fe276693f29cd6ce8", "sha256": "2d07a7a95d2cc1360e5cd55278e2499b34928526075ca5893fe1697b95e4149c" }, "downloads": -1, "filename": "taskcluster-0.0.19.tar.gz", "has_sig": false, "md5_digest": "5805e2a51969903fe276693f29cd6ce8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 30975, "upload_time": "2015-07-03T13:48:44", "upload_time_iso_8601": "2015-07-03T13:48:44.514875Z", "url": "https://files.pythonhosted.org/packages/59/01/9887260f4f2dfc6f86d9caaa007ac8e233d7c3669ec70220b46a05358cdc/taskcluster-0.0.19.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.20": [ { "comment_text": "", "digests": { "md5": "d210e09f563a4e9da4a3dec4768ce271", "sha256": "4c97acf53745c4741e689568be25e4b00a4056e720d66696fe8ee32269d1efe3" }, "downloads": -1, "filename": "taskcluster-0.0.20.tar.gz", "has_sig": false, "md5_digest": "d210e09f563a4e9da4a3dec4768ce271", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31318, "upload_time": "2015-07-14T10:33:27", "upload_time_iso_8601": "2015-07-14T10:33:27.534842Z", "url": "https://files.pythonhosted.org/packages/2a/33/7961f569be572ef0d372c832268ba5fb26ca50b66fb685f43eed9cff24ad/taskcluster-0.0.20.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.21": [ { "comment_text": "", "digests": { "md5": "d35c56aeaa514b10b5588c58b2557291", "sha256": "4d5383874272be68b9abdc83a47eb3fb6b5f9f52bfcdd84f18fde5c731d9d11f" }, "downloads": -1, "filename": "taskcluster-0.0.21.tar.gz", "has_sig": false, "md5_digest": "d35c56aeaa514b10b5588c58b2557291", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31379, "upload_time": "2015-07-15T11:49:40", "upload_time_iso_8601": "2015-07-15T11:49:40.563210Z", "url": "https://files.pythonhosted.org/packages/a8/af/957928c5066a5ce232915179b7c125331d9e7856955ce3c7e6bdbfbc019f/taskcluster-0.0.21.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.22": [ { "comment_text": "", "digests": { "md5": "42bbdd2133b4d883932d0f7c33ae7649", "sha256": "ce81ebb496aad45483b6450fcf7f55d7468643068ffc244cda15b1eacf93842d" }, "downloads": -1, "filename": "taskcluster-0.0.22.tar.gz", "has_sig": false, "md5_digest": "42bbdd2133b4d883932d0f7c33ae7649", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31315, "upload_time": "2015-07-16T09:43:59", "upload_time_iso_8601": "2015-07-16T09:43:59.260809Z", "url": "https://files.pythonhosted.org/packages/be/72/fbb27650956f2216a64fd484768d837e0be2a261efe24797d6435f8f1f98/taskcluster-0.0.22.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.23": [ { "comment_text": "", "digests": { "md5": "92e206e895338311a50347a76ebb6596", "sha256": "c9314e32f4fdf98443f45fe8921c24ab5f651f5f724e9e8d49f20cf6a63dbb8a" }, "downloads": -1, "filename": "taskcluster-0.0.23.tar.gz", "has_sig": false, "md5_digest": "92e206e895338311a50347a76ebb6596", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32321, "upload_time": "2015-08-04T12:56:09", "upload_time_iso_8601": "2015-08-04T12:56:09.582437Z", "url": "https://files.pythonhosted.org/packages/15/4d/4553ac246c91e0e742f0980b56f6f1d794261d1f36f1e848da621976902a/taskcluster-0.0.23.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.24": [ { "comment_text": "", "digests": { "md5": "4be226ca8b7b134cad1a1119db05464b", "sha256": "f13110e0daa13348fe486cde442b304630fc278ef005089d806da2f407d56bdf" }, "downloads": -1, "filename": "taskcluster-0.0.24.tar.gz", "has_sig": false, "md5_digest": "4be226ca8b7b134cad1a1119db05464b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32634, "upload_time": "2015-08-04T12:58:01", "upload_time_iso_8601": "2015-08-04T12:58:01.124677Z", "url": "https://files.pythonhosted.org/packages/3d/9d/66dc9d83b5222f4ca8d278219a2f3ea72385106212721c598fbbf5097a5d/taskcluster-0.0.24.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.25": [ { "comment_text": "", "digests": { "md5": "1af88dbb85dff821df9e16e439fbf60d", "sha256": "cf33044a8c504eb0e429942be210e8ee380ca62ae62a12bdceffc127b14fa82b" }, "downloads": -1, "filename": "taskcluster-0.0.25.tar.gz", "has_sig": false, "md5_digest": "1af88dbb85dff821df9e16e439fbf60d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34406, "upload_time": "2015-09-03T10:14:54", "upload_time_iso_8601": "2015-09-03T10:14:54.421062Z", "url": "https://files.pythonhosted.org/packages/38/90/0061673b4517f06189bb4cf29e8d430cbd7d1fdcb24ecd4f5d709a73a4df/taskcluster-0.0.25.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.26": [ { "comment_text": "", "digests": { "md5": "fe39824322cf3bb014f39a2f84955910", "sha256": "0bf10cbc987a318df16ba84320a38ad36fa538499fc5922d840702096a3afd3f" }, "downloads": -1, "filename": "taskcluster-0.0.26.tar.gz", "has_sig": true, "md5_digest": "fe39824322cf3bb014f39a2f84955910", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34269, "upload_time": "2015-09-09T12:31:23", "upload_time_iso_8601": "2015-09-09T12:31:23.189956Z", "url": "https://files.pythonhosted.org/packages/62/c0/89f20f35a6899cdb9d996a818f2ed6001a13573c9ef26031bf4a61ae25a1/taskcluster-0.0.26.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.27": [ { "comment_text": "", "digests": { "md5": "e117856d157a266079e49bcb92daf108", "sha256": "4294d0d1b0756ebda920f494c185ed2935401568b8f593627bee9a076093cf85" }, "downloads": -1, "filename": "taskcluster-0.0.27.tar.gz", "has_sig": false, "md5_digest": "e117856d157a266079e49bcb92daf108", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34459, "upload_time": "2015-10-01T12:36:43", "upload_time_iso_8601": "2015-10-01T12:36:43.363151Z", "url": "https://files.pythonhosted.org/packages/81/b4/bbb54e01966b8f7db413acfb388c1d1247616fded94c135540cd2bce1951/taskcluster-0.0.27.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.28": [ { "comment_text": "", "digests": { "md5": "f9c6075d3d4c1eb013bdeb0894d82e42", "sha256": "70959352c540e1dec453bc1934f3e869017c55b558d3850b32de6070c651ded8" }, "downloads": -1, "filename": "taskcluster-0.0.28.tar.gz", "has_sig": false, "md5_digest": "f9c6075d3d4c1eb013bdeb0894d82e42", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 34514, "upload_time": "2015-10-08T14:45:32", "upload_time_iso_8601": "2015-10-08T14:45:32.348972Z", "url": "https://files.pythonhosted.org/packages/45/06/61f40602ac1ab5f65e72094f4245ae1e7ab8ccba29800c78243868cf8f32/taskcluster-0.0.28.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.29": [ { "comment_text": "", "digests": { "md5": "04c8bda781590026c3f783383dbaf4dc", "sha256": "ced6007f828f667afa4806621d4cfaf448ec13976ae36909bad4d5bb90b7f843" }, "downloads": -1, "filename": "taskcluster-0.0.29.tar.gz", "has_sig": false, "md5_digest": "04c8bda781590026c3f783383dbaf4dc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 35567, "upload_time": "2015-10-16T10:00:18", "upload_time_iso_8601": "2015-10-16T10:00:18.695868Z", "url": "https://files.pythonhosted.org/packages/e6/5a/0c3983548a8b0140d2da38a12c42688a252424517d55baaf8f6078d18187/taskcluster-0.0.29.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.31": [ { "comment_text": "", "digests": { "md5": "db5c662f4eb13925029015bf445f844c", "sha256": "e508d9042a2d784d7733b72ada89c915c609f659a11fbbd13f4cdf20e7ca7db2" }, "downloads": -1, "filename": "taskcluster-0.0.31.tar.gz", "has_sig": false, "md5_digest": "db5c662f4eb13925029015bf445f844c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 36026, "upload_time": "2015-11-10T13:49:40", "upload_time_iso_8601": "2015-11-10T13:49:40.031147Z", "url": "https://files.pythonhosted.org/packages/17/fd/cc21fd8772114ffba586c62dfa4bec7541689129c0c623532e71fdc37e86/taskcluster-0.0.31.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.32": [ { "comment_text": "", "digests": { "md5": "7aa61c9c38725e2a8ff81bf4be5d9ad6", "sha256": "e5d226c6260369777622ce738d2251c59120035c2a695b274743bbecac23f6dd" }, "downloads": -1, "filename": "taskcluster-0.0.32.tar.gz", "has_sig": false, "md5_digest": "7aa61c9c38725e2a8ff81bf4be5d9ad6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 37824, "upload_time": "2015-12-21T20:20:25", "upload_time_iso_8601": "2015-12-21T20:20:25.561998Z", "url": "https://files.pythonhosted.org/packages/ff/b1/6fa388ce8fc3340e059d1d3a83692d142a0b4eb1c3c7417e94210a35baa0/taskcluster-0.0.32.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.4": [ { "comment_text": "", "digests": { "md5": "d1e59bb68ac4a2b24c73eaa5ba97b294", "sha256": "69b46b918b32fec219f80e490727b548af6e24f3f6deeb49a1c453ea115ee731" }, "downloads": -1, "filename": "taskcluster-0.0.4.tar.gz", "has_sig": false, "md5_digest": "d1e59bb68ac4a2b24c73eaa5ba97b294", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10860, "upload_time": "2014-11-11T23:24:45", "upload_time_iso_8601": "2014-11-11T23:24:45.062158Z", "url": "https://files.pythonhosted.org/packages/1e/1e/dba2d3e392e658a958852cafc42ba4f98924182dcef75287bcda9de2a98b/taskcluster-0.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.6": [ { "comment_text": "", "digests": { "md5": "adc16ec2a4a2e921688207ab181b5081", "sha256": "e3fafb5461afb45baded0f62e5c266c1d71ba27683c70672a8f92c21f59ce769" }, "downloads": -1, "filename": "taskcluster-0.0.6.tar.gz", "has_sig": false, "md5_digest": "adc16ec2a4a2e921688207ab181b5081", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 23372, "upload_time": "2014-11-20T21:08:08", "upload_time_iso_8601": "2014-11-20T21:08:08.756297Z", "url": "https://files.pythonhosted.org/packages/e7/8f/ab4c246e3b50b6bee8e8b73cfa24f0ea6393e15ddb3fc91c80ab6243cb22/taskcluster-0.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.7": [ { "comment_text": "", "digests": { "md5": "969091dfd970deb5858a0d8a11c0d714", "sha256": "aa18234725d44eb1ac4cc504746a93fcf1a062e3008cac1cb059e82dbec1597b" }, "downloads": -1, "filename": "taskcluster-0.0.7.tar.gz", "has_sig": false, "md5_digest": "969091dfd970deb5858a0d8a11c0d714", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24857, "upload_time": "2015-01-16T15:14:16", "upload_time_iso_8601": "2015-01-16T15:14:16.496586Z", "url": "https://files.pythonhosted.org/packages/d0/36/798f63056ed8951a65c40d683a80a3c01a0537566ecedb776eb0dbc0ea95/taskcluster-0.0.7.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.8": [ { "comment_text": "", "digests": { "md5": "8936080d2beba7fba40da6a09ed6c693", "sha256": "5d9170106893996ca9385640796c131b4ef4969fb2bd14983122f9da68dcf462" }, "downloads": -1, "filename": "taskcluster-0.0.8.tar.gz", "has_sig": false, "md5_digest": "8936080d2beba7fba40da6a09ed6c693", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26082, "upload_time": "2015-02-16T12:26:47", "upload_time_iso_8601": "2015-02-16T12:26:47.493959Z", "url": "https://files.pythonhosted.org/packages/90/27/dd356495f4494de5d3fc61cec143b0afc200278e95340634d559e3989b3e/taskcluster-0.0.8.tar.gz", "yanked": false, "yanked_reason": null } ], "0.0.9": [ { "comment_text": "", "digests": { "md5": "851af06b38d7ea20b16b437d34ad6cfb", "sha256": "11fdf18f09403e10e68be997cc7140e437a18ecd2f1b193bd5925f249069d22c" }, "downloads": -1, "filename": "taskcluster-0.0.9.tar.gz", "has_sig": false, "md5_digest": "851af06b38d7ea20b16b437d34ad6cfb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26790, "upload_time": "2015-02-23T14:57:52", "upload_time_iso_8601": "2015-02-23T14:57:52.365613Z", "url": "https://files.pythonhosted.org/packages/b4/45/55cb93d123d881e5fb14d204a1ffdb1328529f46c6b519fe8ca65d1ad24a/taskcluster-0.0.9.tar.gz", "yanked": false, "yanked_reason": null } ], "0.1.0": [ { "comment_text": "", "digests": { "md5": "621be050d2bba54766a2391a3cda9bdf", "sha256": "48e09aab1c9c1b13593d4b31a65b921ce6b719d5423771d985b86f61dc59059f" }, "downloads": -1, "filename": "taskcluster-0.1.0.tar.gz", "has_sig": false, "md5_digest": "621be050d2bba54766a2391a3cda9bdf", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 38698, "upload_time": "2016-02-17T15:12:04", "upload_time_iso_8601": "2016-02-17T15:12:04.690904Z", "url": "https://files.pythonhosted.org/packages/d4/4e/e90ded9ad4df81dd724e20d32b1f1ebd6dcbea95647610a79599cc1994a5/taskcluster-0.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.0": [ { "comment_text": "", "digests": { "md5": "3ba660ad738841b7f30a2a36e9873eb9", "sha256": "101f2278f122e4bd4f4ccb496c5e3a2d4bab677cfbb4cd291f69a96622c190c6" }, "downloads": -1, "filename": "taskcluster-0.2.0.tar.gz", "has_sig": false, "md5_digest": "3ba660ad738841b7f30a2a36e9873eb9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 41192, "upload_time": "2016-02-29T13:19:51", "upload_time_iso_8601": "2016-02-29T13:19:51.768814Z", "url": "https://files.pythonhosted.org/packages/ff/b7/d9782e14cc0507dbc2889f0950264119b826bd21e3673dd264be16ef8a73/taskcluster-0.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.2.1": [ { "comment_text": "", "digests": { "md5": "5aa25bac430dfd2cd4f1bec76aef754d", "sha256": "4ce77ba0de946d12b5e22f345b931b1129d6f14ee5a414271c4bc7096bc615b7" }, "downloads": -1, "filename": "taskcluster-0.2.1.tar.gz", "has_sig": false, "md5_digest": "5aa25bac430dfd2cd4f1bec76aef754d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 48042, "upload_time": "2016-04-18T16:40:21", "upload_time_iso_8601": "2016-04-18T16:40:21.956457Z", "url": "https://files.pythonhosted.org/packages/4f/58/e0b50c4f7ae7bd54e2a9a24818ac803b593e5898a6ba9304ad6796039c94/taskcluster-0.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.0": [ { "comment_text": "", "digests": { "md5": "d351fa3f6964cf12bb7f0058973b2814", "sha256": "af54013461244bbe83181001a2a354067c94b77b7f43d666209fc5c0ca3c1a83" }, "downloads": -1, "filename": "taskcluster-0.3.0.tar.gz", "has_sig": false, "md5_digest": "d351fa3f6964cf12bb7f0058973b2814", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 95987, "upload_time": "2016-04-19T15:25:12", "upload_time_iso_8601": "2016-04-19T15:25:12.941812Z", "url": "https://files.pythonhosted.org/packages/25/92/58cd6ecfcde9c1e3d8b9993daeb4b5a13e245b35577d109693e95bafdf70/taskcluster-0.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.1": [ { "comment_text": "", "digests": { "md5": "6cd114e54f494f4a96f44be88b155298", "sha256": "6f2ac5b835aef4d4209afbabddc151f80e9dc691ab61eab62a44ac1348549b01" }, "downloads": -1, "filename": "taskcluster-0.3.1.tar.gz", "has_sig": false, "md5_digest": "6cd114e54f494f4a96f44be88b155298", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96082, "upload_time": "2016-04-27T15:26:24", "upload_time_iso_8601": "2016-04-27T15:26:24.475277Z", "url": "https://files.pythonhosted.org/packages/b2/e2/0d89ab8782f1185b34fdcb8323b8735db96debd7e2daf3a7010de7eb3204/taskcluster-0.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.2": [ { "comment_text": "", "digests": { "md5": "2d873be929cd2849d617cf48a108a4a5", "sha256": "b5f0f3eb4a58c7cb2fa5e1f41ecb673a9fad9e7f9341f4d788d78c2a9fa626a5" }, "downloads": -1, "filename": "taskcluster-0.3.2.tar.gz", "has_sig": false, "md5_digest": "2d873be929cd2849d617cf48a108a4a5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96083, "upload_time": "2016-04-27T15:45:31", "upload_time_iso_8601": "2016-04-27T15:45:31.692290Z", "url": "https://files.pythonhosted.org/packages/6f/9d/294c68df6430599535a51ba6eef7d3a00fdee391605aa06f7caaf0598ec0/taskcluster-0.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.3": [ { "comment_text": "", "digests": { "md5": "50e1dfa4d7cec7e30f517ca7f9aadb66", "sha256": "1307f941513b6a1d1c92b20099278c8586838a7765c54e96149793c029a242a1" }, "downloads": -1, "filename": "taskcluster-0.3.3.tar.gz", "has_sig": false, "md5_digest": "50e1dfa4d7cec7e30f517ca7f9aadb66", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96084, "upload_time": "2016-04-27T16:02:37", "upload_time_iso_8601": "2016-04-27T16:02:37.201894Z", "url": "https://files.pythonhosted.org/packages/57/a2/ecbd896f5b81f1c667552529456c35343ab31704c263389a28d15eac3a0d/taskcluster-0.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "0.3.4": [ { "comment_text": "", "digests": { "md5": "dab9bc216d499a3d19fc1ad2136aa299", "sha256": "d4fe5e2a44fe27e195b92830ece0a6eb9eb7ad9dc556a0cb16f6f2a6429f1b65" }, "downloads": -1, "filename": "taskcluster-0.3.4.tar.gz", "has_sig": false, "md5_digest": "dab9bc216d499a3d19fc1ad2136aa299", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108306, "upload_time": "2016-06-22T16:20:19", "upload_time_iso_8601": "2016-06-22T16:20:19.134187Z", "url": "https://files.pythonhosted.org/packages/3e/50/bb7659d5cf396f5c78013bb35ac92931c852b0ae3fa738bbd9224b6192ef/taskcluster-0.3.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.0": [ { "comment_text": "", "digests": { "md5": "b446db4709313d80bd78109b4cd50e4b", "sha256": "fe0cbc4275a5a35bbd26d34d87a846d2d3d097d313360f7f4424c9d2228588c4" }, "downloads": -1, "filename": "taskcluster-1.0.0.tar.gz", "has_sig": false, "md5_digest": "b446db4709313d80bd78109b4cd50e4b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52983, "upload_time": "2017-01-30T16:19:31", "upload_time_iso_8601": "2017-01-30T16:19:31.436094Z", "url": "https://files.pythonhosted.org/packages/5c/6f/8217718c57691c3cb223e606d2024d05fd9e2108a53a0b9ee07a72525041/taskcluster-1.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "2a27e1c644a704ef5f05348265e49421", "sha256": "8f1428604d0273b6711bb3b16d910f5b61c80b90e26f5d45cdf1b262e97c35e7" }, "downloads": -1, "filename": "taskcluster-1.0.1.tar.gz", "has_sig": false, "md5_digest": "2a27e1c644a704ef5f05348265e49421", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 52981, "upload_time": "2017-01-30T17:33:35", "upload_time_iso_8601": "2017-01-30T17:33:35.541179Z", "url": "https://files.pythonhosted.org/packages/3e/9b/5567825f6755dc28985fbf0ec145f7347f65b9bc2f59815e0ec5f4c32e2e/taskcluster-1.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "4e9873f0ffdfcdb901eabb0c3be883a6", "sha256": "11cfd462a333e0a084f94c9ce55e349036dbcf04656767f9773da7d148aa5115" }, "downloads": -1, "filename": "taskcluster-1.0.2.tar.gz", "has_sig": false, "md5_digest": "4e9873f0ffdfcdb901eabb0c3be883a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90018, "upload_time": "2017-01-31T11:49:44", "upload_time_iso_8601": "2017-01-31T11:49:44.661545Z", "url": "https://files.pythonhosted.org/packages/d8/00/aac389ae5f2db76b029d55d36d394e272486894d155073369c4e0b272619/taskcluster-1.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "5b5d6a514b9fd466430b51c031a54d56", "sha256": "15af0b2dceb57c55802f9b4ae2bcf031a013c6c12b1faa2d8ce51f0aeaa5fdc2" }, "downloads": -1, "filename": "taskcluster-1.2.0.tar.gz", "has_sig": false, "md5_digest": "5b5d6a514b9fd466430b51c031a54d56", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90076, "upload_time": "2017-02-22T20:36:14", "upload_time_iso_8601": "2017-02-22T20:36:14.963767Z", "url": "https://files.pythonhosted.org/packages/68/a0/2ba2eb16d6357e3db67566a807b7f3cc5f15452c77996f6ad9acc96ffaa4/taskcluster-1.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "8a8ac9c406ab42e4c2332c3f484ec0c2", "sha256": "e790fac22da8c7d981e1ce869fd27934a4eb1c38f4c8856706f2f33bd9fd4184" }, "downloads": -1, "filename": "taskcluster-1.3.0.tar.gz", "has_sig": false, "md5_digest": "8a8ac9c406ab42e4c2332c3f484ec0c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 93007, "upload_time": "2017-05-11T15:10:08", "upload_time_iso_8601": "2017-05-11T15:10:08.151093Z", "url": "https://files.pythonhosted.org/packages/60/5f/2923a1f6ddb7cf96eb9da699ef4bb0e90b4f2c1dfb1a30d734f5ff6107b2/taskcluster-1.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "89b35314ac3145310e8228224965016d", "sha256": "7c5aba1f4279e4bbc0b524a76037dc5b81494c1a817921e9163553d6ad2d4244" }, "downloads": -1, "filename": "taskcluster-1.3.1.tar.gz", "has_sig": false, "md5_digest": "89b35314ac3145310e8228224965016d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92954, "upload_time": "2017-05-15T13:39:46", "upload_time_iso_8601": "2017-05-15T13:39:46.433809Z", "url": "https://files.pythonhosted.org/packages/32/2b/5b2203bd54f433db7a14ae405b972b2beeedf3cb3c914a4dbd8e3497c7f6/taskcluster-1.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.2": [ { "comment_text": "", "digests": { "md5": "efc07284dc8d8c1ec8d736683c695a54", "sha256": "7d96e3677450db0cff16dc44635efea43de9a405e897876dde536d36bca00cf1" }, "downloads": -1, "filename": "taskcluster-1.3.2.tar.gz", "has_sig": false, "md5_digest": "efc07284dc8d8c1ec8d736683c695a54", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 93019, "upload_time": "2017-05-16T10:28:31", "upload_time_iso_8601": "2017-05-16T10:28:31.417181Z", "url": "https://files.pythonhosted.org/packages/0f/12/8d9df8c43589d10a82d1113c33151d9313d6eb59c6747d2a96d49c111aef/taskcluster-1.3.2.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.3": [ { "comment_text": "", "digests": { "md5": "edd41b59e61f77e1e5c0ae392642b0e5", "sha256": "8874b556fe0cd815c5cf9509f263a323b0ab91a680edfe9afdab04ca65ff1375" }, "downloads": -1, "filename": "taskcluster-1.3.3.tar.gz", "has_sig": false, "md5_digest": "edd41b59e61f77e1e5c0ae392642b0e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 93212, "upload_time": "2017-06-06T10:23:18", "upload_time_iso_8601": "2017-06-06T10:23:18.134184Z", "url": "https://files.pythonhosted.org/packages/d6/22/965885edd7bac853f0eab17150cb4b6e605e89601452ba62504421b8f05b/taskcluster-1.3.3.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.4": [ { "comment_text": "", "digests": { "md5": "6ac1cf728a8802761303c4c99212bf22", "sha256": "c0bbaa680aed4e502c370d24258c85e6ea7a891fd090ac6af66356e0e9a459fc" }, "downloads": -1, "filename": "taskcluster-1.3.4.tar.gz", "has_sig": false, "md5_digest": "6ac1cf728a8802761303c4c99212bf22", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 89156, "upload_time": "2017-07-19T13:49:11", "upload_time_iso_8601": "2017-07-19T13:49:11.332697Z", "url": "https://files.pythonhosted.org/packages/b3/90/7461507c89612070826b92ec5f7eb3f4c6c5c126f04d7cc680ef7937b5dd/taskcluster-1.3.4.tar.gz", "yanked": false, "yanked_reason": null } ], "1.3.5": [ { "comment_text": "", "digests": { "md5": "8d0e324ec023964439c03271f78d3f30", "sha256": "02941a2e65f505110f7cff9535e607eaf6fa247042da58c9ead99e7eb1518490" }, "downloads": -1, "filename": "taskcluster-1.3.5-py2-none-any.whl", "has_sig": false, "md5_digest": "8d0e324ec023964439c03271f78d3f30", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 116559, "upload_time": "2017-08-28T11:24:45", "upload_time_iso_8601": "2017-08-28T11:24:45.814475Z", "url": "https://files.pythonhosted.org/packages/90/1a/0d416bc5e8f4e705dc2fd9900db4503a198f99221684b90d141caf8f16b1/taskcluster-1.3.5-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "32ca475febce223f05f028a39b29f2b9", "sha256": "76bca16bf5585bdfd2518fc615ac0d6f8f7acf23f8737879b0ef0adbc7822606" }, "downloads": -1, "filename": "taskcluster-1.3.5-py3-none-any.whl", "has_sig": false, "md5_digest": "32ca475febce223f05f028a39b29f2b9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 116590, "upload_time": "2017-08-28T11:24:47", "upload_time_iso_8601": "2017-08-28T11:24:47.173859Z", "url": "https://files.pythonhosted.org/packages/b4/6d/b31b0a2d6bb2d389debaf2a8a12f21c9324bbf470b4181b9fef2d2415b92/taskcluster-1.3.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8de6cfccfb3881652bb553b667bdd663", "sha256": "67373888f4d3c7adf8d0198db0535ff414a71239868532a5522d0285a20d0cf1" }, "downloads": -1, "filename": "taskcluster-1.3.5.tar.gz", "has_sig": false, "md5_digest": "8de6cfccfb3881652bb553b667bdd663", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92335, "upload_time": "2017-08-28T11:24:49", "upload_time_iso_8601": "2017-08-28T11:24:49.016144Z", "url": "https://files.pythonhosted.org/packages/09/f3/b5a7b58271664a54bfb33c6e9dde0e7b8dcd15f272cc3e3e81a63cd92b7b/taskcluster-1.3.5.tar.gz", "yanked": false, "yanked_reason": null } ], "14.3.0": [ { "comment_text": "", "digests": { "md5": "1ff19d550c3be27a478d5261082d104a", "sha256": "5b8c85806a5f5afd0937591b08807b5c25b7ac67508e3d72902f5de47a3d9954" }, "downloads": -1, "filename": "taskcluster-14.3.0-py2-none-any.whl", "has_sig": false, "md5_digest": "1ff19d550c3be27a478d5261082d104a", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 66203, "upload_time": "2019-07-17T19:59:22", "upload_time_iso_8601": "2019-07-17T19:59:22.013044Z", "url": "https://files.pythonhosted.org/packages/ef/53/d353155a11156f81235c72d390d3c86c9ddb8125dbd5c588dd761aa6ef0e/taskcluster-14.3.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99df485d020bd8575406885e8ad93366", "sha256": "2c526242563ae92a5e4725b723b28c7a6ff2dd5d94dc895cc9c57650e7a5e246" }, "downloads": -1, "filename": "taskcluster-14.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "99df485d020bd8575406885e8ad93366", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 66205, "upload_time": "2019-07-17T19:59:26", "upload_time_iso_8601": "2019-07-17T19:59:26.022402Z", "url": "https://files.pythonhosted.org/packages/23/9e/acf2e2bdf6d861d62e32dae1253fd2853e143daa279ca639d10f76ba0c01/taskcluster-14.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9ed01d21d6e400def1514bcf4ebd161c", "sha256": "9456aa5d4fd8c0ed79e7b5608e85e4f154180a963888d603c729a1aaa29962e6" }, "downloads": -1, "filename": "taskcluster-14.3.0.tar.gz", "has_sig": false, "md5_digest": "9ed01d21d6e400def1514bcf4ebd161c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 122042, "upload_time": "2019-07-17T19:59:32", "upload_time_iso_8601": "2019-07-17T19:59:32.098603Z", "url": "https://files.pythonhosted.org/packages/d8/fa/18230d1dfc5ddcee446abce4c608fe8fc4d08bc639b6e8c82e9052bb5cb5/taskcluster-14.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "14.3.1": [ { "comment_text": "", "digests": { "md5": "d02c81c29c56b0174216ff8e810e4bc3", "sha256": "cbdbe5399fc40489d9c8cf37d003c73c4131b63d92621df5aeff2a361375266f" }, "downloads": -1, "filename": "taskcluster-14.3.1-py2-none-any.whl", "has_sig": false, "md5_digest": "d02c81c29c56b0174216ff8e810e4bc3", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 162705, "upload_time": "2019-07-18T01:55:15", "upload_time_iso_8601": "2019-07-18T01:55:15.846385Z", "url": "https://files.pythonhosted.org/packages/56/d9/b52d30e0c21aed94fa82b987274b6ee4eaa10036ec7e40b07b621e724407/taskcluster-14.3.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4125d060b898b3f21f0c9ae12b7c2637", "sha256": "c2bf8aa70e199679f0c7bc6fc3df0f68078a8ea7ee4261f8ccbbfd670c07f9f3" }, "downloads": -1, "filename": "taskcluster-14.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "4125d060b898b3f21f0c9ae12b7c2637", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 162705, "upload_time": "2019-07-18T01:55:20", "upload_time_iso_8601": "2019-07-18T01:55:20.150045Z", "url": "https://files.pythonhosted.org/packages/56/1a/2f95cbb6eb1ea80cf0c95e84cf61ad6ae140dd4516dcf53fc8bc5e7f260d/taskcluster-14.3.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f15f999178744cadf483e15a4f97ae40", "sha256": "7018b2c45f245d3d55ad6edba13baded49cfba615b55bb0b8436c1751ae59950" }, "downloads": -1, "filename": "taskcluster-14.3.1.tar.gz", "has_sig": false, "md5_digest": "f15f999178744cadf483e15a4f97ae40", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 189580, "upload_time": "2019-07-18T01:55:24", "upload_time_iso_8601": "2019-07-18T01:55:24.541846Z", "url": "https://files.pythonhosted.org/packages/83/00/c2a637d3d09e816eee85676fabfab568a2cc3fa75ac17e5a2601d45870d8/taskcluster-14.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "15.0.0": [ { "comment_text": "", "digests": { "md5": "b804ae540bb33b21d655985521b2c03a", "sha256": "3d5f080cf6c27772983dfa3945ad558d1f7d35f5bcdd483cfd2b704aa2180f85" }, "downloads": -1, "filename": "taskcluster-15.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "b804ae540bb33b21d655985521b2c03a", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 162705, "upload_time": "2019-07-24T00:51:23", "upload_time_iso_8601": "2019-07-24T00:51:23.672428Z", "url": "https://files.pythonhosted.org/packages/0b/8c/6f2075d181dcf02171db76948c885472bcc66f13a5e45f21968a8a1f6610/taskcluster-15.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b97115c495ccee5445cb982297a3cf4", "sha256": "78d30dc38526ce2cce051b0acecc40021130f8a4d4829cc1a11836ca40a48cd9" }, "downloads": -1, "filename": "taskcluster-15.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "6b97115c495ccee5445cb982297a3cf4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 162707, "upload_time": "2019-07-24T00:51:29", "upload_time_iso_8601": "2019-07-24T00:51:29.262613Z", "url": "https://files.pythonhosted.org/packages/bc/99/c8bcc9e4ea3dd35b28174372683cb7715cef26d908cc5cc1bfe214f062d5/taskcluster-15.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "64bfd3058c6133473ea6dad9d4979a6a", "sha256": "4e4a0348cbe29bf54a7354e67968bc0d8a00e2376d9be37c82b6d0095d9d9341" }, "downloads": -1, "filename": "taskcluster-15.0.0.tar.gz", "has_sig": false, "md5_digest": "64bfd3058c6133473ea6dad9d4979a6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 189561, "upload_time": "2019-07-24T00:51:35", "upload_time_iso_8601": "2019-07-24T00:51:35.586910Z", "url": "https://files.pythonhosted.org/packages/2a/cc/00234493d6e29e81dcea35effdeac4d2d32a2b083f5de2ce5953bece4e4f/taskcluster-15.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "16.0.0": [ { "comment_text": "", "digests": { "md5": "475566b4d221c330ea0ebffb8ed9024a", "sha256": "2846eb270a9c563ff2e0fbfc69999bbcc4b9e33979206d5433fd1eeba11f6785" }, "downloads": -1, "filename": "taskcluster-16.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "475566b4d221c330ea0ebffb8ed9024a", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 162470, "upload_time": "2019-08-02T17:02:40", "upload_time_iso_8601": "2019-08-02T17:02:40.310229Z", "url": "https://files.pythonhosted.org/packages/ad/3a/c0c4dec8ecd7b13cc444e81b0cd1df6aef74bf15b9a925cf683fa2aee31a/taskcluster-16.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e577527973555699fe14d4b477c55ccc", "sha256": "8ac7b25c28138b4c1b01614e272f5558ff2af79d4e01430c32ca407838923467" }, "downloads": -1, "filename": "taskcluster-16.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e577527973555699fe14d4b477c55ccc", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 162474, "upload_time": "2019-08-02T17:02:44", "upload_time_iso_8601": "2019-08-02T17:02:44.577814Z", "url": "https://files.pythonhosted.org/packages/d1/51/144213d5ede712f9131ffd6f02c3ee5609c5f39c9b0bd81cf4fda2dc8ba5/taskcluster-16.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0fee7051c74fe945c0e713db25c4e5b", "sha256": "f2ae5cd1f89f6ca3ab869b71b35158e762decc904f5bf483a4ea4843f75a7ef5" }, "downloads": -1, "filename": "taskcluster-16.0.0.tar.gz", "has_sig": false, "md5_digest": "e0fee7051c74fe945c0e713db25c4e5b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 190023, "upload_time": "2019-08-02T17:02:50", "upload_time_iso_8601": "2019-08-02T17:02:50.141893Z", "url": "https://files.pythonhosted.org/packages/b1/70/89260f438dec01177fad931e2c96008049cda5f5958b8269ee31e57790b0/taskcluster-16.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "16.1.0": [ { "comment_text": "", "digests": { "md5": "2e21cbfc9308aa8e65b80cff743576fc", "sha256": "079c90de5ebb397816f46453ae5d529ee147c6efe49e69574e0885f29ecdc9c3" }, "downloads": -1, "filename": "taskcluster-16.1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "2e21cbfc9308aa8e65b80cff743576fc", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 159911, "upload_time": "2019-08-16T19:55:06", "upload_time_iso_8601": "2019-08-16T19:55:06.118096Z", "url": "https://files.pythonhosted.org/packages/b3/46/237a44d53fd5a7ffc74f06bb12065d868819e088f7a62e3108263b3dc00e/taskcluster-16.1.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f83b179f451dd5a02727453ff5a85290", "sha256": "b24701e7e43e19f2c82850b445ab00634bb08d4ae786f3f19f8970d7a8ffecd8" }, "downloads": -1, "filename": "taskcluster-16.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f83b179f451dd5a02727453ff5a85290", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 159912, "upload_time": "2019-08-16T19:55:10", "upload_time_iso_8601": "2019-08-16T19:55:10.745802Z", "url": "https://files.pythonhosted.org/packages/45/f4/d2338e85e2ee8716f621cb5a652d39ed7c5e80950e9eb6e6e82c2821381f/taskcluster-16.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c8dfdbc94a412cf0a4bbfa79ad5091e8", "sha256": "4bfde00e4edf81454ff1c2988df1f7f3c4df5527a2d0f70e098c56d576b2b2c9" }, "downloads": -1, "filename": "taskcluster-16.1.0.tar.gz", "has_sig": false, "md5_digest": "c8dfdbc94a412cf0a4bbfa79ad5091e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 188494, "upload_time": "2019-08-16T19:55:15", "upload_time_iso_8601": "2019-08-16T19:55:15.289374Z", "url": "https://files.pythonhosted.org/packages/70/4a/59e2d283bb15e6de5baf011d3f29cf7a37cb04f1ea515a42b0ea5718dcc2/taskcluster-16.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "16.2.0": [ { "comment_text": "", "digests": { "md5": "77ed359b5692dec204f785800d7db2f0", "sha256": "826953853e606a80f078250f2459de49f6b75bde89745184c1e5d4e012993e9e" }, "downloads": -1, "filename": "taskcluster-16.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "77ed359b5692dec204f785800d7db2f0", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 159939, "upload_time": "2019-08-21T19:11:01", "upload_time_iso_8601": "2019-08-21T19:11:01.044535Z", "url": "https://files.pythonhosted.org/packages/0c/a6/35cc6a3e661c2f44d5458b576db738682099acd2272339c8f2a0d3283889/taskcluster-16.2.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7733ba470c9108f7d5bad1220454b63b", "sha256": "8242d215a03036c4c5ed3b6b3eed8324e09588c778347405bd7475274a159396" }, "downloads": -1, "filename": "taskcluster-16.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7733ba470c9108f7d5bad1220454b63b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 159942, "upload_time": "2019-08-21T19:11:05", "upload_time_iso_8601": "2019-08-21T19:11:05.210113Z", "url": "https://files.pythonhosted.org/packages/9e/c9/ab4e97d08c532fa2e3ad41ca6a361dfbbe911f5efce4bd2831977678406f/taskcluster-16.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f6b03616cefa13203ac809a5ebf079a6", "sha256": "c382b8edd78443e9c2c756c62bdec38a59833d6cf34313e430e044e1e3a25da9" }, "downloads": -1, "filename": "taskcluster-16.2.0.tar.gz", "has_sig": false, "md5_digest": "f6b03616cefa13203ac809a5ebf079a6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 189335, "upload_time": "2019-08-21T19:11:09", "upload_time_iso_8601": "2019-08-21T19:11:09.545145Z", "url": "https://files.pythonhosted.org/packages/f0/5f/b0e8d09d3b1c111a4670caa3d607c31975b8d19ea88971fff5ccbda36c14/taskcluster-16.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "18.0.1": [ { "comment_text": "", "digests": { "md5": "594539853403bee044810bbb8717f9f9", "sha256": "822a7733a024306ebe1d23656bdf89c08afb67d2eb181db245b17d105c78705d" }, "downloads": -1, "filename": "taskcluster-18.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "594539853403bee044810bbb8717f9f9", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 160205, "upload_time": "2019-10-02T20:25:01", "upload_time_iso_8601": "2019-10-02T20:25:01.050646Z", "url": "https://files.pythonhosted.org/packages/14/25/a31cf0dbc1df7cf6b4baff90b1ecbf0c55b97f2b930060b4b7664af2718f/taskcluster-18.0.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "944f7dfc92815ba82532bfbde1ad01c4", "sha256": "fe0f2833cdbed82b71e1156be7eaaa8291896a0374a96ba9bb101b76d27f17e9" }, "downloads": -1, "filename": "taskcluster-18.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "944f7dfc92815ba82532bfbde1ad01c4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 160208, "upload_time": "2019-10-02T20:25:05", "upload_time_iso_8601": "2019-10-02T20:25:05.840063Z", "url": "https://files.pythonhosted.org/packages/43/0d/8727727149e5a621d8600181727e61a73052f779ab05bb51e46e2fd7a0db/taskcluster-18.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "05b674cbdbe481228294e2d46a304127", "sha256": "3276121e10ad6fcfdb69ade9711233152980c5a5d7985c37ba1659e16e6fc6fe" }, "downloads": -1, "filename": "taskcluster-18.0.1.tar.gz", "has_sig": false, "md5_digest": "05b674cbdbe481228294e2d46a304127", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 189241, "upload_time": "2019-10-02T20:25:10", "upload_time_iso_8601": "2019-10-02T20:25:10.259584Z", "url": "https://files.pythonhosted.org/packages/c2/4d/4fe24823a8532f3efc2e13d4e2abf3a8a3b1d4d8ce5e76266bbbc6ea458d/taskcluster-18.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "18.0.2": [ { "comment_text": "", "digests": { "md5": "fe4bfd797b4e6d08d19f04a095697ac0", "sha256": "8daffb02e70c859cb65325522a9415893139a262699731b9b2ef06b7c0072ef5" }, "downloads": -1, "filename": "taskcluster-18.0.2-py2-none-any.whl", "has_sig": false, "md5_digest": "fe4bfd797b4e6d08d19f04a095697ac0", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 160208, "upload_time": "2019-10-03T18:30:25", "upload_time_iso_8601": "2019-10-03T18:30:25.640098Z", "url": "https://files.pythonhosted.org/packages/60/74/167dd67708d52742a958c2b8b0cf9df5751478c1a9d242e23e2e53b9e504/taskcluster-18.0.2-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cd534cf81fdd5d7f4b56223c54073751", "sha256": "8fbdd762c73d0a98eb4f2bc6969da62ad6d1510144707100dbbd84bcdd0b1434" }, "downloads": -1, "filename": "taskcluster-18.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "cd534cf81fdd5d7f4b56223c54073751", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 160210, "upload_time": "2019-10-03T18:30:30", "upload_time_iso_8601": "2019-10-03T18:30:30.460694Z", "url": "https://files.pythonhosted.org/packages/f4/7e/bb53ce8a13ac91046bd6eae4cdf30f85cd28df0f34d723bd60339d91649d/taskcluster-18.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f72ee740745ae51fd2dce5de21ede4dd", "sha256": "7e4329c9cd49aef60cbf23890c07d559170b56df80342f31692f8772113fc0ab" }, "downloads": -1, "filename": "taskcluster-18.0.2.tar.gz", "has_sig": false, "md5_digest": "f72ee740745ae51fd2dce5de21ede4dd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 189227, "upload_time": "2019-10-03T18:30:35", "upload_time_iso_8601": "2019-10-03T18:30:35.014780Z", "url": "https://files.pythonhosted.org/packages/81/c8/58677f1194684a745b7040f93cfed16414978417e5f845505144e77a2c07/taskcluster-18.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "18.0.3": [ { "comment_text": "", "digests": { "md5": "fd02199ab75355cd437732eb09e579a2", "sha256": "ce9a43e238ef2b774e13fa568e14c8b51292f864f0c03a6910bb143f29c98f9e" }, "downloads": -1, "filename": "taskcluster-18.0.3-py2-none-any.whl", "has_sig": false, "md5_digest": "fd02199ab75355cd437732eb09e579a2", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 160206, "upload_time": "2019-10-03T20:30:40", "upload_time_iso_8601": "2019-10-03T20:30:40.314782Z", "url": "https://files.pythonhosted.org/packages/83/43/7a908033ffa1a3f27913b4b937ede9ce5223e7ef6df2de7df6e4f46a1374/taskcluster-18.0.3-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f2e558a60059f6ffc7e5a52da36abd6", "sha256": "e4ea786c42d9afe8ed8b62b82cddb1051db70fc99d04bcf0c7142feb03359b28" }, "downloads": -1, "filename": "taskcluster-18.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "3f2e558a60059f6ffc7e5a52da36abd6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 160208, "upload_time": "2019-10-03T20:30:44", "upload_time_iso_8601": "2019-10-03T20:30:44.507410Z", "url": "https://files.pythonhosted.org/packages/68/d0/63e71659c06f9e17010e28b60abc84f9253e5ec68537c7c3acd05db21ec3/taskcluster-18.0.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "88eb975ea68c62134c6b7534ac2e661f", "sha256": "7f42c304d7592bdbf3522cba4de81ce894108746467be03b429440ca4716a2b5" }, "downloads": -1, "filename": "taskcluster-18.0.3.tar.gz", "has_sig": false, "md5_digest": "88eb975ea68c62134c6b7534ac2e661f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 189240, "upload_time": "2019-10-03T20:30:48", "upload_time_iso_8601": "2019-10-03T20:30:48.407363Z", "url": "https://files.pythonhosted.org/packages/6c/a9/d75332e1a3f53aebf8671103eaf3f788252b6f263847c03dc342c08188b0/taskcluster-18.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "19.0.0": [ { "comment_text": "", "digests": { "md5": "b966a04b893e925fa9d948500a139925", "sha256": "34b8581f50ecf6579388a9d83af6b006333c85ec7c40ee42724a4c8321cea90b" }, "downloads": -1, "filename": "taskcluster-19.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "b966a04b893e925fa9d948500a139925", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 160204, "upload_time": "2019-10-07T17:01:24", "upload_time_iso_8601": "2019-10-07T17:01:24.974800Z", "url": "https://files.pythonhosted.org/packages/fa/51/cefee6ba94a6d784397f9ed646d19585117bcb5316f51f9cebf5edc480a9/taskcluster-19.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d14ed0de81b68ed3b93f77c17944c10d", "sha256": "d36f9d42ff1401939d46d9676fe3903680c742e300e8c726006cf4597321e0ba" }, "downloads": -1, "filename": "taskcluster-19.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d14ed0de81b68ed3b93f77c17944c10d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 160208, "upload_time": "2019-10-07T17:01:29", "upload_time_iso_8601": "2019-10-07T17:01:29.646822Z", "url": "https://files.pythonhosted.org/packages/b5/cf/52caa6688585fec732d7e0f55252e10f42e709f17fc56778865224db2d4a/taskcluster-19.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "154d669bee7f758c59cb494c1f7a5d41", "sha256": "0e455e507406ab61ef448d7e716510695f6bd92bc6ff01b5d8edc0e30736de1d" }, "downloads": -1, "filename": "taskcluster-19.0.0.tar.gz", "has_sig": false, "md5_digest": "154d669bee7f758c59cb494c1f7a5d41", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 189144, "upload_time": "2019-10-07T17:01:34", "upload_time_iso_8601": "2019-10-07T17:01:34.610780Z", "url": "https://files.pythonhosted.org/packages/11/f7/f930369d1adff079fec9a00e7fcf3c7207bf3d253edd9fc5c2b3eb9a669d/taskcluster-19.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "29c78b8c3ae0d752ef2f1717cdd472c0", "sha256": "53d67c46bc66a60e05762984f80676262ec9d33581e547fb2d26122d58f7e892" }, "downloads": -1, "filename": "taskcluster-2.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "29c78b8c3ae0d752ef2f1717cdd472c0", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120303, "upload_time": "2017-10-31T13:18:39", "upload_time_iso_8601": "2017-10-31T13:18:39.775741Z", "url": "https://files.pythonhosted.org/packages/a4/d6/2dcbb639320cff2cced5b0c54e0245616a7f9a19c9bc833b1135703198d5/taskcluster-2.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2b4a95d2fe84ead90f8da999fe64466b", "sha256": "cf23721f28fdf25ba6cba561d9ad0be9b2e91cc11639642c02b86357c4e59870" }, "downloads": -1, "filename": "taskcluster-2.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2b4a95d2fe84ead90f8da999fe64466b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120335, "upload_time": "2017-10-31T13:18:41", "upload_time_iso_8601": "2017-10-31T13:18:41.977480Z", "url": "https://files.pythonhosted.org/packages/13/67/92e22758679bb8fd89ccaf9830ca0b94b2cdedfae6d7e2f20853d5c902ca/taskcluster-2.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "80022baca5d95634d0b541ce3ffe45cc", "sha256": "8b1f2f5a95b75505433990998d1f0008c7cc2bec02b3622d8e3b942ac007b004" }, "downloads": -1, "filename": "taskcluster-2.0.0.tar.gz", "has_sig": false, "md5_digest": "80022baca5d95634d0b541ce3ffe45cc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 123799, "upload_time": "2017-10-31T13:18:43", "upload_time_iso_8601": "2017-10-31T13:18:43.773814Z", "url": "https://files.pythonhosted.org/packages/f1/6f/3860a6761216115b527e89e0ac67a3949c6d27f00b3fe58c3e5360838483/taskcluster-2.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "2c76bdc33f6b0215d44c62b2b4076d97", "sha256": "44d978052cf9880fdf26f4a6c73f59f93a7ecf41bbb538be49b53c86a1a72969" }, "downloads": -1, "filename": "taskcluster-2.1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "2c76bdc33f6b0215d44c62b2b4076d97", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 110045, "upload_time": "2017-11-24T14:55:00", "upload_time_iso_8601": "2017-11-24T14:55:00.399307Z", "url": "https://files.pythonhosted.org/packages/b8/31/b2943e424b1222ce6b4eb7913712fc8f21ab7d9a426191023379be69a521/taskcluster-2.1.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cd4f852312b9c17c91abb86cf7e3b2ad", "sha256": "8a327f05a3b69a035185aa35d4724b8c11ddc5e0b856e11f27bb3ebe98487b6b" }, "downloads": -1, "filename": "taskcluster-2.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "cd4f852312b9c17c91abb86cf7e3b2ad", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 110077, "upload_time": "2017-11-24T14:55:02", "upload_time_iso_8601": "2017-11-24T14:55:02.934789Z", "url": "https://files.pythonhosted.org/packages/68/98/f19ecd17e7f2737fa0944edd9adef59c72354a94492259fe2c86c07cf916/taskcluster-2.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e35fe639252e346bbd3468b541fa8601", "sha256": "017255c41d099d99b2a840a9a8034f7a286bfef4cfe0b1e54a90614ef4ea241d" }, "downloads": -1, "filename": "taskcluster-2.1.0.tar.gz", "has_sig": false, "md5_digest": "e35fe639252e346bbd3468b541fa8601", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117003, "upload_time": "2017-11-24T14:55:04", "upload_time_iso_8601": "2017-11-24T14:55:04.800700Z", "url": "https://files.pythonhosted.org/packages/74/49/487c04cf1969d351c65294b316dd76efb527f4ebcedd946a24258a7e5ba2/taskcluster-2.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "0e3a41d42cee54b23e5ab21d744f19e3", "sha256": "f049fec43e2a3a675ce2310e9d9ebf7a7f2865139af6b9c91eb654bbedbd4b95" }, "downloads": -1, "filename": "taskcluster-2.1.1-py2-none-any.whl", "has_sig": false, "md5_digest": "0e3a41d42cee54b23e5ab21d744f19e3", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 110047, "upload_time": "2017-11-24T14:57:46", "upload_time_iso_8601": "2017-11-24T14:57:46.393847Z", "url": "https://files.pythonhosted.org/packages/32/ee/d3ca7992e2c87ca1264252839bd27983287532840ea84064976536d9d5c0/taskcluster-2.1.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d4d25dd3a4026b98a837ae8ca6a073d0", "sha256": "ee4d98f38df4600b4e9a0945a4c874909a8cdd53799d7caf386f06dea83094c8" }, "downloads": -1, "filename": "taskcluster-2.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d4d25dd3a4026b98a837ae8ca6a073d0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 110079, "upload_time": "2017-11-24T14:57:48", "upload_time_iso_8601": "2017-11-24T14:57:48.696619Z", "url": "https://files.pythonhosted.org/packages/1e/97/c8e0a59d5fe7f90df1de8b4673dc06f27a37af0190e6d830a3dcda99447c/taskcluster-2.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "feaf6cd306c45286e5dc6154bdf4e8ff", "sha256": "9cf0e97adbd3c6d658f13ffdd355152e29ed86a4ed85e56132594bd646786fd3" }, "downloads": -1, "filename": "taskcluster-2.1.1.tar.gz", "has_sig": false, "md5_digest": "feaf6cd306c45286e5dc6154bdf4e8ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 116989, "upload_time": "2017-11-24T14:57:50", "upload_time_iso_8601": "2017-11-24T14:57:50.185598Z", "url": "https://files.pythonhosted.org/packages/cf/c7/72631c378c75fbccc6f1909f89514cf8568ca9968c61a4731ff0623f4f86/taskcluster-2.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.2": [ { "comment_text": "", "digests": { "md5": "37ea646447b87c8ef8122d3f7b4c2677", "sha256": "3e03561fc7f083746a60f68fe3fcb6aecbd39a273d6476aeffc535f92789210c" }, "downloads": -1, "filename": "taskcluster-2.1.2-py2-none-any.whl", "has_sig": false, "md5_digest": "37ea646447b87c8ef8122d3f7b4c2677", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 110044, "upload_time": "2017-11-24T15:03:50", "upload_time_iso_8601": "2017-11-24T15:03:50.350404Z", "url": "https://files.pythonhosted.org/packages/be/c7/5f0522b5219413d3dcbb3fb4b2b2bd785b9e5f4cfc386399bb9551d798a2/taskcluster-2.1.2-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1aef63f1a38dfa78c21ee71677a1621e", "sha256": "b412c20e672c87b8492f2cae5076fd200b1e4ba7fef4fe6da4acde5562e415a5" }, "downloads": -1, "filename": "taskcluster-2.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "1aef63f1a38dfa78c21ee71677a1621e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 110081, "upload_time": "2017-11-24T15:03:51", "upload_time_iso_8601": "2017-11-24T15:03:51.907583Z", "url": "https://files.pythonhosted.org/packages/d1/e5/a0a48db6d20c540701737244d4497ddf2536bc5686de792f4f1679704a11/taskcluster-2.1.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fe1d97ba0b0144abf35fd8339aaa3246", "sha256": "5f55dae0ba7ddb5dde1d5a59a43f3350ad6b3c57976ad6c3bcfc0483444e2761" }, "downloads": -1, "filename": "taskcluster-2.1.2.tar.gz", "has_sig": false, "md5_digest": "fe1d97ba0b0144abf35fd8339aaa3246", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117001, "upload_time": "2017-11-24T15:03:54", "upload_time_iso_8601": "2017-11-24T15:03:54.365412Z", "url": "https://files.pythonhosted.org/packages/97/7f/ae6b567d06c210db5b1eeaf1b555e02c485a03ee0a135b533f1f191d1d29/taskcluster-2.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "2.1.3": [ { "comment_text": "", "digests": { "md5": "2471a4a9058bc591db3367caf00f16c0", "sha256": "23fa8a23bb5ac5de4a6a6f9d270f4fabc3e30e276f5484d66fa9c325f5eb3ad3" }, "downloads": -1, "filename": "taskcluster-2.1.3-py2-none-any.whl", "has_sig": false, "md5_digest": "2471a4a9058bc591db3367caf00f16c0", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 110048, "upload_time": "2017-11-24T15:09:33", "upload_time_iso_8601": "2017-11-24T15:09:33.784768Z", "url": "https://files.pythonhosted.org/packages/0b/cb/1b8348025c26209ad68050c64c880011316953e451e3f8f351f69a4778b4/taskcluster-2.1.3-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cdc82701a10c6fe315579ddcb10b84ef", "sha256": "ba070c194a899bfab11a71a45918d08460e50547d9dcad25a61bc5a00cf49802" }, "downloads": -1, "filename": "taskcluster-2.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "cdc82701a10c6fe315579ddcb10b84ef", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 110081, "upload_time": "2017-11-24T15:09:35", "upload_time_iso_8601": "2017-11-24T15:09:35.613242Z", "url": "https://files.pythonhosted.org/packages/22/2b/c1343a2b58c6696b73ac92c285b4417186f8ca9332a9c9262de69ad5475a/taskcluster-2.1.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f2bac218d3fcef2cc43b38d65a449b6f", "sha256": "5bc6be5d59bd9a199b445db650081b9a8b7a8f436667172f9623bb34aff97556" }, "downloads": -1, "filename": "taskcluster-2.1.3.tar.gz", "has_sig": false, "md5_digest": "f2bac218d3fcef2cc43b38d65a449b6f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 117008, "upload_time": "2017-11-24T15:09:37", "upload_time_iso_8601": "2017-11-24T15:09:37.638381Z", "url": "https://files.pythonhosted.org/packages/9e/c6/a94dc47135d7516f6bf1b877079a08ffa4a420d5be2c39c2fa3d78f28875/taskcluster-2.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "20.0.0": [ { "comment_text": "", "digests": { "md5": "6a1191fda4ad38466c3b7187a54a525d", "sha256": "aef98551e25916aad6c513471ebf905fcdd755e92f19547beb54cd5958de1b9b" }, "downloads": -1, "filename": "taskcluster-20.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "6a1191fda4ad38466c3b7187a54a525d", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 160201, "upload_time": "2019-10-15T18:48:42", "upload_time_iso_8601": "2019-10-15T18:48:42.904127Z", "url": "https://files.pythonhosted.org/packages/a4/a9/514d1ad82b287656e6f36cb6287a02b39ba8af3bec0b82ee87bdf39e7e4d/taskcluster-20.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "185100b742e543d3d173fdefb6cb179a", "sha256": "622112a040b02808df45a0d1dd259aeffc7419bab130dd5255399c8c08698af8" }, "downloads": -1, "filename": "taskcluster-20.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "185100b742e543d3d173fdefb6cb179a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 160206, "upload_time": "2019-10-15T18:48:48", "upload_time_iso_8601": "2019-10-15T18:48:48.550729Z", "url": "https://files.pythonhosted.org/packages/50/63/6ee3745e35d624afde266c6e1c284b0635ca106c651f4f06fae6196bc5bc/taskcluster-20.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5285e6f2265819dbc81002014f54e8a7", "sha256": "af4be6aab785b11184a605185c2292390da98d6440589af93925381ae2184a9b" }, "downloads": -1, "filename": "taskcluster-20.0.0.tar.gz", "has_sig": false, "md5_digest": "5285e6f2265819dbc81002014f54e8a7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 188432, "upload_time": "2019-10-15T18:48:53", "upload_time_iso_8601": "2019-10-15T18:48:53.967657Z", "url": "https://files.pythonhosted.org/packages/d9/7a/c5f17fe2eade27f98247d20e4bde92e119e2a7381908f4c4bccefda9aef5/taskcluster-20.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "21.0.0": [ { "comment_text": "", "digests": { "md5": "b01fa9e8716a39ea24eacab468765ce3", "sha256": "904bea3afc6a8233e4b9e0536958391316704f091277f23acdcbd94681764341" }, "downloads": -1, "filename": "taskcluster-21.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "b01fa9e8716a39ea24eacab468765ce3", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 160201, "upload_time": "2019-10-17T23:11:28", "upload_time_iso_8601": "2019-10-17T23:11:28.432426Z", "url": "https://files.pythonhosted.org/packages/4f/52/d8fa807b9426c5d7a4d1a333e38105176ed17d2da2dc2d8d3eafa6b8143a/taskcluster-21.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "72aeb8e6742dded458716eec47be7246", "sha256": "d107e48f44e664661a96bae2def8c9d7b513d4456ed04092472a6e84f9938d34" }, "downloads": -1, "filename": "taskcluster-21.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "72aeb8e6742dded458716eec47be7246", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 160205, "upload_time": "2019-10-17T23:11:33", "upload_time_iso_8601": "2019-10-17T23:11:33.429656Z", "url": "https://files.pythonhosted.org/packages/52/da/bf46682880f51565a57d32fdb4b9e5f84612a03922d3463f0ead4a90b1e1/taskcluster-21.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a5b5d1c3b4b0c8cf264ff86387f3436", "sha256": "3ea576e19dc3305d4bfee4e9038fba88985898d18d6a8405a059447c05804f13" }, "downloads": -1, "filename": "taskcluster-21.0.0.tar.gz", "has_sig": false, "md5_digest": "7a5b5d1c3b4b0c8cf264ff86387f3436", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 188435, "upload_time": "2019-10-17T23:11:37", "upload_time_iso_8601": "2019-10-17T23:11:37.947045Z", "url": "https://files.pythonhosted.org/packages/8d/16/29a0c5f5875b55dbe3a2c793d061b00dbb8ac3f80727218dcab9ef685067/taskcluster-21.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "21.2.0": [ { "comment_text": "", "digests": { "md5": "ad199b7651e6ccb746854f949d60206d", "sha256": "8545a6be752be130f017e75353b6a4b841d6fba4df0cde052cc820361d4da066" }, "downloads": -1, "filename": "taskcluster-21.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "ad199b7651e6ccb746854f949d60206d", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 160211, "upload_time": "2019-10-24T21:59:39", "upload_time_iso_8601": "2019-10-24T21:59:39.658655Z", "url": "https://files.pythonhosted.org/packages/8e/a4/d23c2435920854d915ab4ccedf1a272273fa4044d0e44f505cb5d5bf7345/taskcluster-21.2.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "54b5faffc8ae8b7706ef62db2b234f92", "sha256": "37cd2ee48c68d82751bccc1ec21104a3df327ce6108b63c436fe0aff981bd6cc" }, "downloads": -1, "filename": "taskcluster-21.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "54b5faffc8ae8b7706ef62db2b234f92", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 160215, "upload_time": "2019-10-24T21:59:43", "upload_time_iso_8601": "2019-10-24T21:59:43.611837Z", "url": "https://files.pythonhosted.org/packages/59/73/04ba5d737281be14842a34893888ae513a192a804eb687d1c2225265a310/taskcluster-21.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7e3d4edf5646d1fb97c3e7a177cff365", "sha256": "bec0009cae41ef9b013cbb41ce1aec5a22f7bc270f73494ad7cc43eea46b85c1" }, "downloads": -1, "filename": "taskcluster-21.2.0.tar.gz", "has_sig": false, "md5_digest": "7e3d4edf5646d1fb97c3e7a177cff365", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 189182, "upload_time": "2019-10-24T21:59:47", "upload_time_iso_8601": "2019-10-24T21:59:47.715403Z", "url": "https://files.pythonhosted.org/packages/c5/bd/724d2d530f8399a82b9d96ca40b489a6bde53543e533b88993e67bfe2ee1/taskcluster-21.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "21.3.0": [ { "comment_text": "", "digests": { "md5": "9dc9594e6a3ee6709d37cc0cde3df8e7", "sha256": "0341c24704019d16558d24a74b30cd88285df11970f6e3d28738e234669a1050" }, "downloads": -1, "filename": "taskcluster-21.3.0-py2-none-any.whl", "has_sig": false, "md5_digest": "9dc9594e6a3ee6709d37cc0cde3df8e7", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 160210, "upload_time": "2019-10-31T16:32:38", "upload_time_iso_8601": "2019-10-31T16:32:38.608912Z", "url": "https://files.pythonhosted.org/packages/6a/aa/0b318fbb114e24c29a34d2d2a5198f4ec5053d072d217c1505f94ff2d829/taskcluster-21.3.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0bd55e7174b57c9e48274dc2b8a7c2b1", "sha256": "b420151ea5c7a60cf69875560d61acf618485290b1910134c70f15159473ca5e" }, "downloads": -1, "filename": "taskcluster-21.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "0bd55e7174b57c9e48274dc2b8a7c2b1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 160214, "upload_time": "2019-10-31T16:32:43", "upload_time_iso_8601": "2019-10-31T16:32:43.118308Z", "url": "https://files.pythonhosted.org/packages/45/f8/8f7972c87c6afef58da9c4a335d4a40823d9aa83e81c0308e3730abbb399/taskcluster-21.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8e02e1f8c1910d33e7979b425c1ee8a1", "sha256": "4165387df4a85a937569ebf08bf6845b65e2b20c92ee00e316b312a2e423860c" }, "downloads": -1, "filename": "taskcluster-21.3.0.tar.gz", "has_sig": false, "md5_digest": "8e02e1f8c1910d33e7979b425c1ee8a1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 189185, "upload_time": "2019-10-31T16:32:47", "upload_time_iso_8601": "2019-10-31T16:32:47.527642Z", "url": "https://files.pythonhosted.org/packages/d3/c5/7f125e44870ba731ed036ee96379bf1580790701acbfcfa78af8dbe80869/taskcluster-21.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "22.0.0": [ { "comment_text": "", "digests": { "md5": "32550ba5504ac4d404a6f244d477827d", "sha256": "adf8e690a749734f44c1e951548966bc7f39af1219174266bf3ab82dee1d489c" }, "downloads": -1, "filename": "taskcluster-22.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "32550ba5504ac4d404a6f244d477827d", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 160209, "upload_time": "2019-11-04T16:50:07", "upload_time_iso_8601": "2019-11-04T16:50:07.359445Z", "url": "https://files.pythonhosted.org/packages/27/9f/26e3ea148b69eaf777acb1f1c90b0bc79c8d0b1ff3480ba21476368d377d/taskcluster-22.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "112b42bcd87df85b558f8c6e69f339b5", "sha256": "c35816e4d469a7469ff39e3126286466dafa7fb7aba37090d0bf07a877da5bc0" }, "downloads": -1, "filename": "taskcluster-22.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "112b42bcd87df85b558f8c6e69f339b5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 160215, "upload_time": "2019-11-04T16:50:12", "upload_time_iso_8601": "2019-11-04T16:50:12.749640Z", "url": "https://files.pythonhosted.org/packages/75/df/4bbeed3f78e3987cb1fe96bec9462285068037fe4a39dc40e657247c9153/taskcluster-22.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "66570136c8e374544a1ac00bd556894f", "sha256": "807abbe56682a9d843eb8b98d86e3c88f3393952325205647c00a304ab2d6157" }, "downloads": -1, "filename": "taskcluster-22.0.0.tar.gz", "has_sig": false, "md5_digest": "66570136c8e374544a1ac00bd556894f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 189169, "upload_time": "2019-11-04T16:50:17", "upload_time_iso_8601": "2019-11-04T16:50:17.046049Z", "url": "https://files.pythonhosted.org/packages/1f/26/f1747d13456a32d60c9439048d57187dfb2b13d6e11080d1f10f560c16b2/taskcluster-22.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "22.1.0": [ { "comment_text": "", "digests": { "md5": "b2b88beb2be32dab9702787662cd4d08", "sha256": "0c3c657e5b9d4ab9028446df9cdeac8e16584574d35a94a589517cea1fd0d292" }, "downloads": -1, "filename": "taskcluster-22.1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "b2b88beb2be32dab9702787662cd4d08", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 160206, "upload_time": "2019-11-08T17:14:34", "upload_time_iso_8601": "2019-11-08T17:14:34.994457Z", "url": "https://files.pythonhosted.org/packages/d2/99/64f22f6033f18009705ca22c064848a6fa744477090637558bcd223c99e0/taskcluster-22.1.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "83dc6135d9724798a9045bce31bb4092", "sha256": "da9857bdcb518a74ecfe0cbf34c7f4a047c13bfc8ee57b3a97e7d4edb6580667" }, "downloads": -1, "filename": "taskcluster-22.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "83dc6135d9724798a9045bce31bb4092", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 160210, "upload_time": "2019-11-08T17:14:39", "upload_time_iso_8601": "2019-11-08T17:14:39.396443Z", "url": "https://files.pythonhosted.org/packages/4b/69/2dacc15f2e5321780f3694a66b3299a09f53470f2943d4ad8b251dcd042c/taskcluster-22.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b026c9a3c3db211f25c46b075228e427", "sha256": "d4c500b4fd9b030ef0898d81c9c6551f2beeebbdf687705817725b6095f60189" }, "downloads": -1, "filename": "taskcluster-22.1.0.tar.gz", "has_sig": false, "md5_digest": "b026c9a3c3db211f25c46b075228e427", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 189209, "upload_time": "2019-11-08T17:14:43", "upload_time_iso_8601": "2019-11-08T17:14:43.732204Z", "url": "https://files.pythonhosted.org/packages/db/82/e884615ef9b3927f3f5f909e9545be923871092e900e5ffebb5907706257/taskcluster-22.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "22.1.1": [ { "comment_text": "", "digests": { "md5": "75ab405bb133551546665d979a7cc9f4", "sha256": "0b87096327374303fa8ab1a8985917841bc9e704adeade6214f21ded7065dc9e" }, "downloads": -1, "filename": "taskcluster-22.1.1-py2-none-any.whl", "has_sig": false, "md5_digest": "75ab405bb133551546665d979a7cc9f4", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 160207, "upload_time": "2019-11-09T21:41:27", "upload_time_iso_8601": "2019-11-09T21:41:27.196113Z", "url": "https://files.pythonhosted.org/packages/3d/4b/42fa363e0ddd745a851692843e94bb76a5fdc4b9823fee22a3a0f974c6bc/taskcluster-22.1.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0311bdc09a4d3c7ec9e7e770b7a73a0b", "sha256": "9221e19739f02bac4385fa3b1858028d92244b7f87d3b8e6dffe85e8fa118ff5" }, "downloads": -1, "filename": "taskcluster-22.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "0311bdc09a4d3c7ec9e7e770b7a73a0b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 160210, "upload_time": "2019-11-09T21:41:31", "upload_time_iso_8601": "2019-11-09T21:41:31.516232Z", "url": "https://files.pythonhosted.org/packages/e3/46/d95f53760e27b1f9c1f39fcc719147336daa86326c630f4ee7cf73958b9e/taskcluster-22.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "98c21b0a5295f45638e871b1b4827e97", "sha256": "07ef947d9b4fed32e4bc3e04b528f66a572944c6e2f907b8067c46b622067796" }, "downloads": -1, "filename": "taskcluster-22.1.1.tar.gz", "has_sig": false, "md5_digest": "98c21b0a5295f45638e871b1b4827e97", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 189187, "upload_time": "2019-11-09T21:41:35", "upload_time_iso_8601": "2019-11-09T21:41:35.927259Z", "url": "https://files.pythonhosted.org/packages/63/bf/8f3cb85603238dc3f2adf1dac91f65bbd122c843ea2f352d78792f939b55/taskcluster-22.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "23.0.0": [ { "comment_text": "", "digests": { "md5": "4a15dfc82f7f644db955ad8d0d3981a9", "sha256": "cdd521ef1785a366ce7ae1f1f6babe60cd817c84103a9e183de774ef267df4a6" }, "downloads": -1, "filename": "taskcluster-23.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "4a15dfc82f7f644db955ad8d0d3981a9", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 136644, "upload_time": "2019-11-18T18:39:35", "upload_time_iso_8601": "2019-11-18T18:39:35.133263Z", "url": "https://files.pythonhosted.org/packages/8c/ad/50bbd826521865db031041937fddad8e77d0c92c0ab6c24ba25607458298/taskcluster-23.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d6bdfd64acf7cecd09e37da07a6561bb", "sha256": "f5f43519937e5d420923eb8ab451c37dd60ef4cada32adb1de77d58be4d4257d" }, "downloads": -1, "filename": "taskcluster-23.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d6bdfd64acf7cecd09e37da07a6561bb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 136650, "upload_time": "2019-11-18T18:39:38", "upload_time_iso_8601": "2019-11-18T18:39:38.654922Z", "url": "https://files.pythonhosted.org/packages/8d/5a/5952f9297f044119bff3328aa7dd215028bd62c6e8869479d140ac1d808c/taskcluster-23.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ffe4a375edee8919ec21d4b513ff6fd9", "sha256": "3811b51b67432a272bcf8bf54254d919be11e8005beb99b1b601a596d39a439b" }, "downloads": -1, "filename": "taskcluster-23.0.0.tar.gz", "has_sig": false, "md5_digest": "ffe4a375edee8919ec21d4b513ff6fd9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 158075, "upload_time": "2019-11-18T18:39:42", "upload_time_iso_8601": "2019-11-18T18:39:42.638067Z", "url": "https://files.pythonhosted.org/packages/12/72/b4afefbd8ed3826326be7b820dd2ebdea55382dd11e4390243593bf43606/taskcluster-23.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "24.0.0": [ { "comment_text": "", "digests": { "md5": "42f8a36598dc0eed22c253748bece31b", "sha256": "9f86ed1381f2d591263c709a1fdcdec8a94dbac1e16bc8164b19884bb943f0de" }, "downloads": -1, "filename": "taskcluster-24.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "42f8a36598dc0eed22c253748bece31b", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 138878, "upload_time": "2019-12-02T19:14:03", "upload_time_iso_8601": "2019-12-02T19:14:03.517846Z", "url": "https://files.pythonhosted.org/packages/c4/e9/3484d255b14a43a5dfbe10a64b50271e2a225e16ac2ad934084fc09e4af5/taskcluster-24.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "952c39c6436f836889512e245b82fe44", "sha256": "dca87517e1b15a5ce82de8dec3e1804f35d7f87f3ac622d4bc8e7a4d46c77282" }, "downloads": -1, "filename": "taskcluster-24.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "952c39c6436f836889512e245b82fe44", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 138881, "upload_time": "2019-12-02T19:14:08", "upload_time_iso_8601": "2019-12-02T19:14:08.318219Z", "url": "https://files.pythonhosted.org/packages/cd/e1/2dc9fc105f2e167cb7891dd6960c670b00e7351bfd3ff41916e9645b23a4/taskcluster-24.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "18cb31e2bd14a1476ce29206c8091531", "sha256": "971e4b645785fa6786fae1f6b79a8c2a239f4a3b375347365275a5e28cc59689" }, "downloads": -1, "filename": "taskcluster-24.0.0.tar.gz", "has_sig": false, "md5_digest": "18cb31e2bd14a1476ce29206c8091531", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162581, "upload_time": "2019-12-02T19:14:12", "upload_time_iso_8601": "2019-12-02T19:14:12.434370Z", "url": "https://files.pythonhosted.org/packages/07/19/48e5d79eb92754ab767a766998a25787a36b860290253452549bc2b44285/taskcluster-24.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "24.0.1": [ { "comment_text": "", "digests": { "md5": "7d03f846c10f1d7bb772a8d8fbdf0198", "sha256": "13363fc69e8469d64c626b9dedea1d63ef52e40efb3d2bccd15affdc78ffd3bb" }, "downloads": -1, "filename": "taskcluster-24.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "7d03f846c10f1d7bb772a8d8fbdf0198", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 138889, "upload_time": "2019-12-04T17:53:43", "upload_time_iso_8601": "2019-12-04T17:53:43.521687Z", "url": "https://files.pythonhosted.org/packages/32/7a/306567f53f6cfa02628ccb4406b25afb52b2a81b9c1e18f2a3aa73ca4673/taskcluster-24.0.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8d1dbcc429e0c3c2f2e6da1f03c04158", "sha256": "a60d8ee952c620b4f6f2f00f4b32147c75112c7d8d6fb7c509a3ea6ee5ff5ecd" }, "downloads": -1, "filename": "taskcluster-24.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "8d1dbcc429e0c3c2f2e6da1f03c04158", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 138890, "upload_time": "2019-12-04T17:53:47", "upload_time_iso_8601": "2019-12-04T17:53:47.318648Z", "url": "https://files.pythonhosted.org/packages/9e/30/49b4d2c8c38d21dae3db4e94c99a89a4e04eb4d21d6b8ef778dd14f7cfbd/taskcluster-24.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "55599e22178bc17705d8f8eb74ab9ced", "sha256": "73880c3088200b72cc0f7b2d8da927d40b52c3988203ba220814504e98ca956c" }, "downloads": -1, "filename": "taskcluster-24.0.1.tar.gz", "has_sig": false, "md5_digest": "55599e22178bc17705d8f8eb74ab9ced", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162585, "upload_time": "2019-12-04T17:53:51", "upload_time_iso_8601": "2019-12-04T17:53:51.035901Z", "url": "https://files.pythonhosted.org/packages/44/a4/056f4927afa9997979f0a3644a1df39bf9b4c0a4742ff79a06fcd878c990/taskcluster-24.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "24.0.2": [ { "comment_text": "", "digests": { "md5": "43598c4cd5553f95cfe95bee4dce0a38", "sha256": "9c6f73388f9dce6b69b73a74731dd8eb69056fa85c73331470c2a2dc9d75e4c9" }, "downloads": -1, "filename": "taskcluster-24.0.2-py2-none-any.whl", "has_sig": false, "md5_digest": "43598c4cd5553f95cfe95bee4dce0a38", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 138891, "upload_time": "2019-12-10T15:08:23", "upload_time_iso_8601": "2019-12-10T15:08:23.002949Z", "url": "https://files.pythonhosted.org/packages/20/7d/bdb5042f6f468d9dae663b251ac2efe932e22383c5d45ffe18d6fbdd4431/taskcluster-24.0.2-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e37dd376ef018b9b4d02636697e3b94a", "sha256": "05c299df90a004f589d6f0726bf3bedfadd41a5a219a76a4787aec00a4966ebb" }, "downloads": -1, "filename": "taskcluster-24.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "e37dd376ef018b9b4d02636697e3b94a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 138892, "upload_time": "2019-12-10T15:08:27", "upload_time_iso_8601": "2019-12-10T15:08:27.173598Z", "url": "https://files.pythonhosted.org/packages/dc/2b/0c4559885c21a674b6617d6cd44dbb3ecc1054b13f80d18ad544d9c9e5bd/taskcluster-24.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2c6870dc81ed1c69e1782b1ce5c796b5", "sha256": "d6a2872e1436da84319723c8a6a2eb02ecdc5e5148b40f2dee00dc6cc101f6f3" }, "downloads": -1, "filename": "taskcluster-24.0.2.tar.gz", "has_sig": false, "md5_digest": "2c6870dc81ed1c69e1782b1ce5c796b5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162554, "upload_time": "2019-12-10T15:08:31", "upload_time_iso_8601": "2019-12-10T15:08:31.037455Z", "url": "https://files.pythonhosted.org/packages/58/d1/b8909f643d5d7f807e9863c66041a990579aabd0257b8e1a23f0bc66126c/taskcluster-24.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "24.1.0": [ { "comment_text": "", "digests": { "md5": "314c31185e061a7c660d96d86350461b", "sha256": "16e2db5b5d714e0a336d88bcd0874831ed39ee138b43fa227b06a8dfa0f2cdd3" }, "downloads": -1, "filename": "taskcluster-24.1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "314c31185e061a7c660d96d86350461b", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 138889, "upload_time": "2019-12-11T00:47:39", "upload_time_iso_8601": "2019-12-11T00:47:39.063316Z", "url": "https://files.pythonhosted.org/packages/ee/18/aae61ee66f0744593d094aba0565f209a0eab015b9e0247a811aaf378dad/taskcluster-24.1.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a80d73544052fb98ac3d33cac852e278", "sha256": "12a6350ad2595089a1c05e9e3410501cd666880e8961b0c3cacc9e6a33a6d928" }, "downloads": -1, "filename": "taskcluster-24.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "a80d73544052fb98ac3d33cac852e278", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 138891, "upload_time": "2019-12-11T00:47:43", "upload_time_iso_8601": "2019-12-11T00:47:43.494141Z", "url": "https://files.pythonhosted.org/packages/ad/e1/b9c1409dff06e9afea605eed29f468c359d85571fb6a74718080cd368e9c/taskcluster-24.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a70faaf9e1608ce3fc62cedb0b675542", "sha256": "7c93ef5ed3ba73c055473d821341f0375b4205af02eba9bdc79964ac66551389" }, "downloads": -1, "filename": "taskcluster-24.1.0.tar.gz", "has_sig": false, "md5_digest": "a70faaf9e1608ce3fc62cedb0b675542", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 161837, "upload_time": "2019-12-11T00:47:47", "upload_time_iso_8601": "2019-12-11T00:47:47.752443Z", "url": "https://files.pythonhosted.org/packages/03/56/7db37b35854f48a6b4c97610cdf8b49f47ac1e842f3a623426d4a8cabd9c/taskcluster-24.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "24.1.1": [ { "comment_text": "", "digests": { "md5": "8a8769423b76194e6c21a4fc7ed63be3", "sha256": "f63fa519ab159e806011ec371308cd82c9b4747ee2942c335e6ff1e3e15c3565" }, "downloads": -1, "filename": "taskcluster-24.1.1-py2-none-any.whl", "has_sig": false, "md5_digest": "8a8769423b76194e6c21a4fc7ed63be3", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 138888, "upload_time": "2019-12-11T20:17:20", "upload_time_iso_8601": "2019-12-11T20:17:20.144217Z", "url": "https://files.pythonhosted.org/packages/a9/57/5db175eab0581bb5ac32ab65eaa123b3b908ec1ec8c9a453470485b0bd54/taskcluster-24.1.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f5e5ac715c1f23d88b3c87928f70551e", "sha256": "64795af7737d2b71e89151e83c9a1d8a5f4661627bcb95433b1163ea365df941" }, "downloads": -1, "filename": "taskcluster-24.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "f5e5ac715c1f23d88b3c87928f70551e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 138889, "upload_time": "2019-12-11T20:17:23", "upload_time_iso_8601": "2019-12-11T20:17:23.952043Z", "url": "https://files.pythonhosted.org/packages/ec/b7/a6a03c4d85e30265ea08dfa5b39efb8bdf9fbea2231e7248b885ca8112f7/taskcluster-24.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a5286837184b3e5563e967eccbf04f4f", "sha256": "78e5108bd41f36cd874c4a3c5d19345425ef3df3675e3cb2b48bc0c6df9e929b" }, "downloads": -1, "filename": "taskcluster-24.1.1.tar.gz", "has_sig": false, "md5_digest": "a5286837184b3e5563e967eccbf04f4f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 161837, "upload_time": "2019-12-11T20:17:39", "upload_time_iso_8601": "2019-12-11T20:17:39.441984Z", "url": "https://files.pythonhosted.org/packages/df/70/1bd8c893969e314604f60d88ac314664f8ad7c34c7fd729f6123b9174d4f/taskcluster-24.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "24.1.10": [ { "comment_text": "", "digests": { "md5": "9e8c3519faf359d4b124bcb97ed0386c", "sha256": "0bcb66e24b4590b9281267ba6f09be19e0c961583e5ba18efae0d69d31a3c747" }, "downloads": -1, "filename": "taskcluster-24.1.10-py2-none-any.whl", "has_sig": false, "md5_digest": "9e8c3519faf359d4b124bcb97ed0386c", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 138829, "upload_time": "2020-01-10T17:19:17", "upload_time_iso_8601": "2020-01-10T17:19:17.795693Z", "url": "https://files.pythonhosted.org/packages/11/88/0e3ac9ec41510693aafcc46be9115293a86d36bfe567e9b54add41c783b3/taskcluster-24.1.10-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4abf6d82a8c96e16acb21a58d6a7955b", "sha256": "7642c42c6f73e3d17b22271dd66bcd839f10356481bc12eaf0b99408227977f3" }, "downloads": -1, "filename": "taskcluster-24.1.10-py3-none-any.whl", "has_sig": false, "md5_digest": "4abf6d82a8c96e16acb21a58d6a7955b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 138831, "upload_time": "2020-01-10T17:19:21", "upload_time_iso_8601": "2020-01-10T17:19:21.601668Z", "url": "https://files.pythonhosted.org/packages/d4/2b/24c5cf7069cee51bbbba281d37a82c8e1edccf2b3365e48fada238bee55f/taskcluster-24.1.10-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c2c2ad238fbb7dc9b84409d26efe5d05", "sha256": "7aab96e6ec7fdd75422f286bb554edd2527b610de1ef81d349eba64368db9713" }, "downloads": -1, "filename": "taskcluster-24.1.10.tar.gz", "has_sig": false, "md5_digest": "c2c2ad238fbb7dc9b84409d26efe5d05", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 161828, "upload_time": "2020-01-10T17:19:24", "upload_time_iso_8601": "2020-01-10T17:19:24.907113Z", "url": "https://files.pythonhosted.org/packages/85/d9/0b865bbc57e9dc2e7e807b5bb67efa13e8ec126c58dc4e0ee9213b5664f0/taskcluster-24.1.10.tar.gz", "yanked": false, "yanked_reason": null } ], "24.1.2": [ { "comment_text": "", "digests": { "md5": "d2e329d0a8c6269f40248c18da4d8bd9", "sha256": "ad53b9a341e38584f08999fe5b2471c87f6d8606dc25355a7d55a5eb6beb2bff" }, "downloads": -1, "filename": "taskcluster-24.1.2-py2-none-any.whl", "has_sig": false, "md5_digest": "d2e329d0a8c6269f40248c18da4d8bd9", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 138890, "upload_time": "2019-12-18T20:14:01", "upload_time_iso_8601": "2019-12-18T20:14:01.446370Z", "url": "https://files.pythonhosted.org/packages/7a/76/85acf4569acba52d9d13c2af1d71d9dda34ea3907c50fb37b5f615198b96/taskcluster-24.1.2-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6f86e446ad4082f699a981b7e58cd315", "sha256": "77d3dd84e17efe0a58b4589fe5e28a679f0cb942840e4a8171573678bcd6cf58" }, "downloads": -1, "filename": "taskcluster-24.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "6f86e446ad4082f699a981b7e58cd315", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 138891, "upload_time": "2019-12-18T20:14:06", "upload_time_iso_8601": "2019-12-18T20:14:06.040544Z", "url": "https://files.pythonhosted.org/packages/ee/01/0cb31ff8f61ed9c46961be73acb97b18f3e09b8e15ac632a367bff1125c4/taskcluster-24.1.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d8fc08b5befb1a7bc7e519467ea6b8ad", "sha256": "5b105b7f47224dedb343b5cf0814529c01f7d0af3b52a3c68bc99cffcd77ab4c" }, "downloads": -1, "filename": "taskcluster-24.1.2.tar.gz", "has_sig": false, "md5_digest": "d8fc08b5befb1a7bc7e519467ea6b8ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162616, "upload_time": "2019-12-18T20:14:09", "upload_time_iso_8601": "2019-12-18T20:14:09.747479Z", "url": "https://files.pythonhosted.org/packages/00/92/29fa9bca9acc5365e22b089eb667701c1adc73b86080ff7921659e5e5b77/taskcluster-24.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "24.1.9": [ { "comment_text": "", "digests": { "md5": "16e0bb7adf6457e65cc9b3c80deb3f21", "sha256": "ecb2d07fe0be771af95ca4470cd5375014fbdf681cfa1a6c773cdef8b6f4788a" }, "downloads": -1, "filename": "taskcluster-24.1.9-py2-none-any.whl", "has_sig": false, "md5_digest": "16e0bb7adf6457e65cc9b3c80deb3f21", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 138817, "upload_time": "2020-01-04T01:27:30", "upload_time_iso_8601": "2020-01-04T01:27:30.791129Z", "url": "https://files.pythonhosted.org/packages/52/70/914ecf18069549d8ce8223027e7f1ec2ca4466177a621b569981c6c159f2/taskcluster-24.1.9-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "20d43c52239f151e0e0a7aa83560b071", "sha256": "eedd32a36c7ccb299acbbca6ddeaec678d0661877a821c55a5c8ccb3aeb5e7e7" }, "downloads": -1, "filename": "taskcluster-24.1.9-py3-none-any.whl", "has_sig": false, "md5_digest": "20d43c52239f151e0e0a7aa83560b071", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 138819, "upload_time": "2020-01-04T01:27:34", "upload_time_iso_8601": "2020-01-04T01:27:34.848892Z", "url": "https://files.pythonhosted.org/packages/77/6c/aefe6cd2dc0963892f3b19383f1e0c5323f3f27d37f51772e522347488e5/taskcluster-24.1.9-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d9e7b9842124ddaacdd8cbd8819af95", "sha256": "0c1be2984f349e90c0a976d4a670fca126f753b072b92d70276956a9dbe39244" }, "downloads": -1, "filename": "taskcluster-24.1.9.tar.gz", "has_sig": false, "md5_digest": "9d9e7b9842124ddaacdd8cbd8819af95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 161817, "upload_time": "2020-01-04T01:27:38", "upload_time_iso_8601": "2020-01-04T01:27:38.744681Z", "url": "https://files.pythonhosted.org/packages/70/fb/a69901528629f7ac1a5abbb66d526e1a83ca4e571f7132ad5709be4dc608/taskcluster-24.1.9.tar.gz", "yanked": false, "yanked_reason": null } ], "24.2.0": [ { "comment_text": "", "digests": { "md5": "0ca5e64072935336bf1ae25293cb8d92", "sha256": "685bfd2eee98f5336cfbefeff1ccc4a8bcf074ca5695b90306dc75a937fa77a1" }, "downloads": -1, "filename": "taskcluster-24.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "0ca5e64072935336bf1ae25293cb8d92", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 138847, "upload_time": "2020-01-14T23:15:32", "upload_time_iso_8601": "2020-01-14T23:15:32.434381Z", "url": "https://files.pythonhosted.org/packages/98/9a/2db49a9af93c68d363ee5630a9c7d3b565c9507aa74df2b5bdcf2c0d7f1e/taskcluster-24.2.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3dc249166a747ecb1e76bc58e9bdc9a2", "sha256": "8c65a5aeeb7d151f33fe0c70616c72b04622034332ccf66869cac1348986d04d" }, "downloads": -1, "filename": "taskcluster-24.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "3dc249166a747ecb1e76bc58e9bdc9a2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 138849, "upload_time": "2020-01-14T23:15:36", "upload_time_iso_8601": "2020-01-14T23:15:36.333509Z", "url": "https://files.pythonhosted.org/packages/2f/9e/071a729c6f383a9f5e8de7c77a56d62cef0d63fa464236d8fe63cc47dd33/taskcluster-24.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "015fa6e208a3413af760c5045bb2418f", "sha256": "dc8588f8d1cce008de74ba3f13bbcae8621ab453af594ce99f657797720fda66" }, "downloads": -1, "filename": "taskcluster-24.2.0.tar.gz", "has_sig": false, "md5_digest": "015fa6e208a3413af760c5045bb2418f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 161974, "upload_time": "2020-01-14T23:15:40", "upload_time_iso_8601": "2020-01-14T23:15:40.245639Z", "url": "https://files.pythonhosted.org/packages/66/fd/27a0e61e4bf5d51f30e41371b6633c1db71a6fddafa47c8c6a587c4a2039/taskcluster-24.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "24.3.0": [ { "comment_text": "", "digests": { "md5": "a7747efba8f64ea10a5bdd89891d4797", "sha256": "b7af65930516cbb8549bebb4197d36326c381eb3c09203cd34a4d541ca83c170" }, "downloads": -1, "filename": "taskcluster-24.3.0-py2-none-any.whl", "has_sig": false, "md5_digest": "a7747efba8f64ea10a5bdd89891d4797", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 119953, "upload_time": "2020-02-07T17:29:36", "upload_time_iso_8601": "2020-02-07T17:29:36.419338Z", "url": "https://files.pythonhosted.org/packages/15/2f/1351cd08aae057c9df8e342b44b358e308a0ed3a3b10534d915bd8399f05/taskcluster-24.3.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bb30e754121ab61b2a3749fcd20f4922", "sha256": "efa8e036bc4388dabb4e6fcf66c4c91f770113ba6376ef1c6bab51fb8aecff8f" }, "downloads": -1, "filename": "taskcluster-24.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "bb30e754121ab61b2a3749fcd20f4922", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 119960, "upload_time": "2020-02-07T17:29:38", "upload_time_iso_8601": "2020-02-07T17:29:38.855313Z", "url": "https://files.pythonhosted.org/packages/2c/9e/b95a030721fbc87b2b3b2d37bf590c31606247b31dc85a86d955b75ffe0e/taskcluster-24.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7a5f8941be974b9295cc3e132bc24ab8", "sha256": "8ba68ed6d0e227c4e9149c2cea47ca47fc074d90bb7639f161985427d79c6ab8" }, "downloads": -1, "filename": "taskcluster-24.3.0.tar.gz", "has_sig": false, "md5_digest": "7a5f8941be974b9295cc3e132bc24ab8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96498, "upload_time": "2020-02-07T17:29:41", "upload_time_iso_8601": "2020-02-07T17:29:41.200181Z", "url": "https://files.pythonhosted.org/packages/c4/81/0ffadf0421852abee5b64c0558d4572da48b4e955e44375318896bdacfef/taskcluster-24.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "24.3.1": [ { "comment_text": "", "digests": { "md5": "6adf5b88aada50eb9fac093a24bf6d2b", "sha256": "4785511fce8946f6dceb6736f42e28b5106bc03d6556f65e79ba233e04ada781" }, "downloads": -1, "filename": "taskcluster-24.3.1-py2-none-any.whl", "has_sig": false, "md5_digest": "6adf5b88aada50eb9fac093a24bf6d2b", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 119952, "upload_time": "2020-02-10T18:53:02", "upload_time_iso_8601": "2020-02-10T18:53:02.414776Z", "url": "https://files.pythonhosted.org/packages/90/7e/ebae838adb05a4474e2e1d015e7ff539733467d2712d3966c758457a1ac6/taskcluster-24.3.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1863f4dc6b68ef2a0cb32bc590179730", "sha256": "4c734778f221449bc72239ff4ed4a53d78bc58eef645ec5f8528296cb58c1d0d" }, "downloads": -1, "filename": "taskcluster-24.3.1-py3-none-any.whl", "has_sig": false, "md5_digest": "1863f4dc6b68ef2a0cb32bc590179730", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 119959, "upload_time": "2020-02-10T18:53:04", "upload_time_iso_8601": "2020-02-10T18:53:04.450781Z", "url": "https://files.pythonhosted.org/packages/f9/c9/63a95efdd9f67c954aef62e30d59cdefcf23f220c838ef0ef4a05ab5b2d9/taskcluster-24.3.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5df32b55872fafdf82e080e6348335be", "sha256": "bce6960c42d7f1c37df2369e5b6a13cc68718fb9642eaca905b9135789517921" }, "downloads": -1, "filename": "taskcluster-24.3.1.tar.gz", "has_sig": false, "md5_digest": "5df32b55872fafdf82e080e6348335be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96469, "upload_time": "2020-02-10T18:53:06", "upload_time_iso_8601": "2020-02-10T18:53:06.442480Z", "url": "https://files.pythonhosted.org/packages/35/69/561e0abac2e7bef39842010ffc3be2f8a8944d4d059ec6a32c9c392e061b/taskcluster-24.3.1.tar.gz", "yanked": false, "yanked_reason": null } ], "25.1.1": [ { "comment_text": "", "digests": { "md5": "c40f261b45026205bd64f4ebd35bdd4f", "sha256": "e981cbe5084503eafc40f1e9eec3c9d34787cd27b69dc6ebf5cd2e0f425ff05a" }, "downloads": -1, "filename": "taskcluster-25.1.1-py2-none-any.whl", "has_sig": false, "md5_digest": "c40f261b45026205bd64f4ebd35bdd4f", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 119954, "upload_time": "2020-02-14T23:18:50", "upload_time_iso_8601": "2020-02-14T23:18:50.217173Z", "url": "https://files.pythonhosted.org/packages/c0/77/9bb28991845bc2abd5d95d9e2e8cea21f520c85f1eac804137003c450650/taskcluster-25.1.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "37486aa4e3302d7b10a5a0ead4a4bb40", "sha256": "d6b5b247d05844af6ca6803aee450833bddebf340b0c026ef620ba6601858a2d" }, "downloads": -1, "filename": "taskcluster-25.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "37486aa4e3302d7b10a5a0ead4a4bb40", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 119960, "upload_time": "2020-02-14T23:18:52", "upload_time_iso_8601": "2020-02-14T23:18:52.567825Z", "url": "https://files.pythonhosted.org/packages/3b/59/90f62b29d08c5c3522fef2688332db763bd7702a02f0d038ba14771e379d/taskcluster-25.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2bdbe57512d33c4feeb0d6d6d23c7d4d", "sha256": "d708c98bc009ef8c8e46bb5fc109b89befd32ed0a7895435960d507728b8b511" }, "downloads": -1, "filename": "taskcluster-25.1.1.tar.gz", "has_sig": false, "md5_digest": "2bdbe57512d33c4feeb0d6d6d23c7d4d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96457, "upload_time": "2020-02-14T23:18:54", "upload_time_iso_8601": "2020-02-14T23:18:54.647258Z", "url": "https://files.pythonhosted.org/packages/15/16/5895520142a1a51fecc1584f90590921479d10c9a5d1fe33627b4600332d/taskcluster-25.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "25.2.0": [ { "comment_text": "", "digests": { "md5": "af3c0ad90dcac82154d0bebdbf89eae8", "sha256": "cec8e303db1968d8d3fa34f69637ef011ef46106a3336b752e1f9737d375171c" }, "downloads": -1, "filename": "taskcluster-25.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "af3c0ad90dcac82154d0bebdbf89eae8", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 119954, "upload_time": "2020-02-17T15:56:37", "upload_time_iso_8601": "2020-02-17T15:56:37.704649Z", "url": "https://files.pythonhosted.org/packages/48/d7/b48f24b56c12e1f348eb02231969800cb3c730fb5f32ab27d2c4c3d34635/taskcluster-25.2.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "03b453c9bab9b03022eb58c2ee549fa7", "sha256": "d6db203ae4c4a0979b912193469ccc292ee2daaaf4f52a0e93b1ae943b45a78d" }, "downloads": -1, "filename": "taskcluster-25.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "03b453c9bab9b03022eb58c2ee549fa7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 119963, "upload_time": "2020-02-17T15:56:39", "upload_time_iso_8601": "2020-02-17T15:56:39.966821Z", "url": "https://files.pythonhosted.org/packages/8a/f3/2dc3e7dc7eb49800471a3943505348e722bf3c8af6746a353bc74d8621b3/taskcluster-25.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d2aaad59b5934267810da1d1d4de811b", "sha256": "073db8b91d0df8d69ac07d7e38f36b6556a99f212592ecd3b0e0fd484197ba13" }, "downloads": -1, "filename": "taskcluster-25.2.0.tar.gz", "has_sig": false, "md5_digest": "d2aaad59b5934267810da1d1d4de811b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96479, "upload_time": "2020-02-17T15:56:41", "upload_time_iso_8601": "2020-02-17T15:56:41.750186Z", "url": "https://files.pythonhosted.org/packages/af/fa/5f2292a836dc05aed06c38a72731e3456bf8c3c53196229a05b4060427b0/taskcluster-25.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "25.3.0": [ { "comment_text": "", "digests": { "md5": "32c4f12a00efd7e753e3fc42cbfa4239", "sha256": "7ed49431c68a562cd421dfdb2aa3e3a99e759bffbc208fcfe8eee27e219014e0" }, "downloads": -1, "filename": "taskcluster-25.3.0-py2-none-any.whl", "has_sig": false, "md5_digest": "32c4f12a00efd7e753e3fc42cbfa4239", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 119955, "upload_time": "2020-02-20T21:17:46", "upload_time_iso_8601": "2020-02-20T21:17:46.489552Z", "url": "https://files.pythonhosted.org/packages/10/1c/6457195815e8e1bf20eda07c88fd52de3bd3215f511e364ee4ce9de2954e/taskcluster-25.3.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "47d086126a5c24a73b43dfc9b3ec520d", "sha256": "c1108a9611c540529f08c9c2a15d104fe8853e0fa6b2d97f030e69c0f3460925" }, "downloads": -1, "filename": "taskcluster-25.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "47d086126a5c24a73b43dfc9b3ec520d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 119962, "upload_time": "2020-02-20T21:17:48", "upload_time_iso_8601": "2020-02-20T21:17:48.781916Z", "url": "https://files.pythonhosted.org/packages/10/38/76f0b248c5142bdc3dd9b46c3cd3cc02c7d09bc9d75534d0fa0309743f8a/taskcluster-25.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c91a856296f40264b38b1c018c05946e", "sha256": "9f7ad8de338c894a5b916523b4e1150fb210b821dcd93c1fadf1016cc737844b" }, "downloads": -1, "filename": "taskcluster-25.3.0.tar.gz", "has_sig": false, "md5_digest": "c91a856296f40264b38b1c018c05946e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96475, "upload_time": "2020-02-20T21:17:50", "upload_time_iso_8601": "2020-02-20T21:17:50.710792Z", "url": "https://files.pythonhosted.org/packages/a8/93/22412d0fa004059218c786168cf0606a7faee457bb1ea8ee47c96e60022c/taskcluster-25.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "25.4.0": [ { "comment_text": "", "digests": { "md5": "6c68dc23abfeefe0fc08e89e506afd2f", "sha256": "017e626ec7211cc250f6c59ac4fbeb3ca7d7ecf0a253eb4f21a694bc5d02ae36" }, "downloads": -1, "filename": "taskcluster-25.4.0-py2-none-any.whl", "has_sig": false, "md5_digest": "6c68dc23abfeefe0fc08e89e506afd2f", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120300, "upload_time": "2020-02-26T22:05:18", "upload_time_iso_8601": "2020-02-26T22:05:18.961386Z", "url": "https://files.pythonhosted.org/packages/4d/11/467373ab40ed233c81757d6eda9514c71550b65e1d03bc6db6cc04be74e8/taskcluster-25.4.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "817e5f6596f26eb3590a7d02e94254c5", "sha256": "0a8fc965441ab60aafb83bcf2b670afd3f8817b13067561e084b4d2528f1e75c" }, "downloads": -1, "filename": "taskcluster-25.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "817e5f6596f26eb3590a7d02e94254c5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120307, "upload_time": "2020-02-26T22:05:21", "upload_time_iso_8601": "2020-02-26T22:05:21.587228Z", "url": "https://files.pythonhosted.org/packages/44/5c/7fda77a975c9ae9946ec09b3acad959029ef01dc71bc6336ee480fe0f587/taskcluster-25.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f246e536adde9388e64c6d3aae798355", "sha256": "a9d10a794a065ea17a11fa8ee4861e57ea702362f70d00dc97d5a4f685a70d4f" }, "downloads": -1, "filename": "taskcluster-25.4.0.tar.gz", "has_sig": false, "md5_digest": "f246e536adde9388e64c6d3aae798355", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96784, "upload_time": "2020-02-26T22:05:23", "upload_time_iso_8601": "2020-02-26T22:05:23.581261Z", "url": "https://files.pythonhosted.org/packages/8c/e5/2a65db72455196146567fd860d1d4b932da35f1e3fbe85c867292369cab3/taskcluster-25.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "26.0.1": [ { "comment_text": "", "digests": { "md5": "49179e8a415b064f73e5fee6320cc25d", "sha256": "ded9373f3fc61b0d62d5292319f14ee0a62e651cf067d3439e899bebda4765ab" }, "downloads": -1, "filename": "taskcluster-26.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "49179e8a415b064f73e5fee6320cc25d", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120096, "upload_time": "2020-03-09T21:15:37", "upload_time_iso_8601": "2020-03-09T21:15:37.526321Z", "url": "https://files.pythonhosted.org/packages/34/b2/40c919ea7ca62e539b342aaddc784894ba9eaaa76a8cce48ea7daf7e852b/taskcluster-26.0.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a76811e8310daadfd16e6f9a0e2bd1a6", "sha256": "caf4c7de1e76f4aa9173d0b3a13cd36384a5cabf71d559adf1f550cf5a2840c7" }, "downloads": -1, "filename": "taskcluster-26.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "a76811e8310daadfd16e6f9a0e2bd1a6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120101, "upload_time": "2020-03-09T21:15:39", "upload_time_iso_8601": "2020-03-09T21:15:39.255833Z", "url": "https://files.pythonhosted.org/packages/5f/6c/8f48ad1b6d69f69ed5615bc067eb0de480c90e8c0700097b52fef7b5a98a/taskcluster-26.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1d0b45bd208351b6062380b3df86dee6", "sha256": "cda8c1afbe6210eacad498414314ffd77104a23c854f008ad3efa7215e6f7834" }, "downloads": -1, "filename": "taskcluster-26.0.1.tar.gz", "has_sig": false, "md5_digest": "1d0b45bd208351b6062380b3df86dee6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96594, "upload_time": "2020-03-09T21:15:41", "upload_time_iso_8601": "2020-03-09T21:15:41.314362Z", "url": "https://files.pythonhosted.org/packages/b0/b0/cacb345a814cdfa2d99a3aa746705172ab5aea64849cd72e496a3a56bd2d/taskcluster-26.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "27.0.0": [ { "comment_text": "", "digests": { "md5": "1001f470e9354cf07c51d2874120e408", "sha256": "4905b57911aec5cae2f4530e5571080285ec12cfa7367ce01b7a196fbf19749a" }, "downloads": -1, "filename": "taskcluster-27.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "1001f470e9354cf07c51d2874120e408", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 119873, "upload_time": "2020-03-10T19:38:55", "upload_time_iso_8601": "2020-03-10T19:38:55.033061Z", "url": "https://files.pythonhosted.org/packages/ea/d8/cf2c5cb999fecc09f86f617d879e391a23141054fe6b01d4429399616800/taskcluster-27.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c84c3670ad5beb36e5e4b0c9282a098c", "sha256": "2bed90238c8c2c7273624e8c64ce485987ca121588dac6490a23aca91943852e" }, "downloads": -1, "filename": "taskcluster-27.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c84c3670ad5beb36e5e4b0c9282a098c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 119880, "upload_time": "2020-03-10T19:38:57", "upload_time_iso_8601": "2020-03-10T19:38:57.246817Z", "url": "https://files.pythonhosted.org/packages/67/9c/e6c98cf943385ec9a6156b01ce63d5998809bb7d55c873bdecb10107e981/taskcluster-27.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9b376e8da0d584055a2b1dd72f673ab4", "sha256": "f79e07b074cd716936b80c2a4583c03be1254376fa36d2ba11932c44cd1af676" }, "downloads": -1, "filename": "taskcluster-27.0.0.tar.gz", "has_sig": false, "md5_digest": "9b376e8da0d584055a2b1dd72f673ab4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96361, "upload_time": "2020-03-10T19:38:59", "upload_time_iso_8601": "2020-03-10T19:38:59.437430Z", "url": "https://files.pythonhosted.org/packages/52/98/493180efa5850d5ad732b5646602830857d0df846e5830c310a48b049d54/taskcluster-27.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "27.1.0": [ { "comment_text": "", "digests": { "md5": "805520c9a66a948e0b828328db37a205", "sha256": "5bb4cc19b4bd060b13d4dc18f83ed1800c5b3b7d4d183cf1d31b12f2ff72f66c" }, "downloads": -1, "filename": "taskcluster-27.1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "805520c9a66a948e0b828328db37a205", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 119873, "upload_time": "2020-03-11T15:41:40", "upload_time_iso_8601": "2020-03-11T15:41:40.657652Z", "url": "https://files.pythonhosted.org/packages/5c/80/7e12adb081febb69f4a850bfa47ad78d9b89c34bd5ed5e7c9823671e2abe/taskcluster-27.1.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "209bc03aad2b4f7c79c2cbabb70521d9", "sha256": "d2703021e96b3c18c38b9f4fa185d6236229853699fb1d427b978b4cdbab593a" }, "downloads": -1, "filename": "taskcluster-27.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "209bc03aad2b4f7c79c2cbabb70521d9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 119882, "upload_time": "2020-03-11T15:41:42", "upload_time_iso_8601": "2020-03-11T15:41:42.657285Z", "url": "https://files.pythonhosted.org/packages/9a/51/8c3e5390b4d212f1c09670dabaea356cc0e99ff9f0c9fc9636468c3adfda/taskcluster-27.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "aa3afccc4ca50fef9eecfafca750aba6", "sha256": "ab43126717040057a6d53a8eedf53b0676af0dce974a754464dbd0dde90a9ca5" }, "downloads": -1, "filename": "taskcluster-27.1.0.tar.gz", "has_sig": false, "md5_digest": "aa3afccc4ca50fef9eecfafca750aba6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96362, "upload_time": "2020-03-11T15:41:44", "upload_time_iso_8601": "2020-03-11T15:41:44.502623Z", "url": "https://files.pythonhosted.org/packages/ac/f7/96cc6deb80b86ef6185ba9f2d56fd3076a8edc91b7de6f8c92312bdf8ae4/taskcluster-27.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "27.2.0": [ { "comment_text": "", "digests": { "md5": "7600f0d3109d33b1fcf0b258fad0a344", "sha256": "c43b5eef0e4b5d7a79196de48303c7550b58e65573f84e7cb434ebc80ce3cde8" }, "downloads": -1, "filename": "taskcluster-27.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "7600f0d3109d33b1fcf0b258fad0a344", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 119873, "upload_time": "2020-03-11T18:10:21", "upload_time_iso_8601": "2020-03-11T18:10:21.213694Z", "url": "https://files.pythonhosted.org/packages/6d/e9/f73fc9f34081db0eeec64eecf1b62c241c9e18a3a89f4309dc7d07baf7e7/taskcluster-27.2.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "44543f23281e84a8129497ce6ebb77e5", "sha256": "4d2796201c54413901a024e38282f3821d790aa8f53bd62a99d9e1c5cacb7e48" }, "downloads": -1, "filename": "taskcluster-27.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "44543f23281e84a8129497ce6ebb77e5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 119882, "upload_time": "2020-03-11T18:10:23", "upload_time_iso_8601": "2020-03-11T18:10:23.583479Z", "url": "https://files.pythonhosted.org/packages/5b/6d/21d12a4bfc261e783ba245d7a49fa622e543b2fb66247eff2bfd1828e3de/taskcluster-27.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0d10d33133de46c72191bbec3bf0fd6a", "sha256": "7105ba6c918514701bc6290f8a262581b454cb088170e42ef34c1315b313dc26" }, "downloads": -1, "filename": "taskcluster-27.2.0.tar.gz", "has_sig": false, "md5_digest": "0d10d33133de46c72191bbec3bf0fd6a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96375, "upload_time": "2020-03-11T18:10:25", "upload_time_iso_8601": "2020-03-11T18:10:25.910384Z", "url": "https://files.pythonhosted.org/packages/e4/2c/3c010a6a9d17191b29f1d1c009416ff4228aa26db39b94240f0aa0b42ff5/taskcluster-27.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "28.0.0": [ { "comment_text": "", "digests": { "md5": "8eab96fee04da178725a812d58f1b6d4", "sha256": "87b3c9e653d3ce2024c5a2cb4831dec6147757a05ec3b36bef88b138a185f139" }, "downloads": -1, "filename": "taskcluster-28.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "8eab96fee04da178725a812d58f1b6d4", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120154, "upload_time": "2020-03-12T19:32:05", "upload_time_iso_8601": "2020-03-12T19:32:05.146954Z", "url": "https://files.pythonhosted.org/packages/6c/39/03c4ef70c62868593949e12b40ef5c72097cface50fc492f04c456988773/taskcluster-28.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d2290d2e689ebbfffeac1877e0299635", "sha256": "577a4e2951a806259574e3e667878ac174dcf4f6a564738f5035a90a8af40711" }, "downloads": -1, "filename": "taskcluster-28.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "d2290d2e689ebbfffeac1877e0299635", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120163, "upload_time": "2020-03-12T19:32:07", "upload_time_iso_8601": "2020-03-12T19:32:07.401352Z", "url": "https://files.pythonhosted.org/packages/e2/18/f95b59bc339ac5563e3811e1422b52c03e642529082ccbbcb4d86288effa/taskcluster-28.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1816ba772909c2f898a3e62cfa9e0bf7", "sha256": "dd5baebdba986f56d5d53ee385729729aa0b1ac9b5f764565c041292498baa14" }, "downloads": -1, "filename": "taskcluster-28.0.0.tar.gz", "has_sig": false, "md5_digest": "1816ba772909c2f898a3e62cfa9e0bf7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96612, "upload_time": "2020-03-12T19:32:09", "upload_time_iso_8601": "2020-03-12T19:32:09.416006Z", "url": "https://files.pythonhosted.org/packages/fb/00/5a6e08c2a55c5075c65802be41c5b004a85d39ab8f18b540582fd0ae2870/taskcluster-28.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "28.1.0": [ { "comment_text": "", "digests": { "md5": "85e3e0c862f283492591344f6adf93b5", "sha256": "3399c967f017dd5c7dc572afc7d04b09f35104e5e7b02b481cf8e098644b9658" }, "downloads": -1, "filename": "taskcluster-28.1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "85e3e0c862f283492591344f6adf93b5", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120154, "upload_time": "2020-03-23T21:44:17", "upload_time_iso_8601": "2020-03-23T21:44:17.691285Z", "url": "https://files.pythonhosted.org/packages/91/7c/60fd899003daa91c71157b9599c48ea0d8156bce6bb8a3ff8adf63cfb450/taskcluster-28.1.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "036df4f31a80bafb1f0329e6d657003a", "sha256": "03c69a0b5ef8196d466dbed69ae9646909b5ec2f9e1d629e742e079a6520e1e3" }, "downloads": -1, "filename": "taskcluster-28.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "036df4f31a80bafb1f0329e6d657003a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120161, "upload_time": "2020-03-23T21:44:19", "upload_time_iso_8601": "2020-03-23T21:44:19.420871Z", "url": "https://files.pythonhosted.org/packages/b1/ff/3b339ac77451ff0880ad08e03e46c2db67778084a08b202779437992d582/taskcluster-28.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e79f340469e86658c5f9d20db76acbd9", "sha256": "411d8bf37c437f664aecd2693f12c0cba8c16be9fab1693e9c612cfb4f62c95d" }, "downloads": -1, "filename": "taskcluster-28.1.0.tar.gz", "has_sig": false, "md5_digest": "e79f340469e86658c5f9d20db76acbd9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96614, "upload_time": "2020-03-23T21:44:21", "upload_time_iso_8601": "2020-03-23T21:44:21.154043Z", "url": "https://files.pythonhosted.org/packages/51/fc/9245e23060606b65312ca9cd8fa410db485b2de72c8d7e249acae6dcd22f/taskcluster-28.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "28.2.0": [ { "comment_text": "", "digests": { "md5": "5d0d22b033866d50386c3b2f07f617de", "sha256": "c58503979b5d765fad7053fe67bd20a4dd2b5bf3dd50f9b7e3b0a5aea2ffe5a0" }, "downloads": -1, "filename": "taskcluster-28.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "5d0d22b033866d50386c3b2f07f617de", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120155, "upload_time": "2020-04-01T19:59:36", "upload_time_iso_8601": "2020-04-01T19:59:36.716768Z", "url": "https://files.pythonhosted.org/packages/23/37/2d70fb921423139a81229e316e8183156fd991ea4e13b67ad33052a9e3a7/taskcluster-28.2.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7733961498abc10c47700e19530f5679", "sha256": "241760f4a01f46c4d0301e4a0e9e12c73fdd5f4ab1efa089eb6951db9cbc773b" }, "downloads": -1, "filename": "taskcluster-28.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7733961498abc10c47700e19530f5679", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120163, "upload_time": "2020-04-01T19:59:38", "upload_time_iso_8601": "2020-04-01T19:59:38.318618Z", "url": "https://files.pythonhosted.org/packages/e0/9e/2bed5b435094ecd1942c488b3b4cb14e0b0a3f0d0d7892b635e362e9f81b/taskcluster-28.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e9d2687f40152a2718b4a3ad158d1f83", "sha256": "2b5ef6119b426ceaf2dfa9d4d856b79a71b7186a8ec9b6acfeb76a89ff3f8fc2" }, "downloads": -1, "filename": "taskcluster-28.2.0.tar.gz", "has_sig": false, "md5_digest": "e9d2687f40152a2718b4a3ad158d1f83", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96627, "upload_time": "2020-04-01T19:59:39", "upload_time_iso_8601": "2020-04-01T19:59:39.869172Z", "url": "https://files.pythonhosted.org/packages/ef/fa/caffd242fb86a3badf977f5671d9fcaf2cd26773a6424859bb46f8ce9ef2/taskcluster-28.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "28.2.1": [ { "comment_text": "", "digests": { "md5": "f15052a868df5ddb1983c385e9481388", "sha256": "e289831840251c0936d380957e060d2a79347b3a014a1605ec334a9e068b5165" }, "downloads": -1, "filename": "taskcluster-28.2.1-py2-none-any.whl", "has_sig": false, "md5_digest": "f15052a868df5ddb1983c385e9481388", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120154, "upload_time": "2020-04-03T18:18:09", "upload_time_iso_8601": "2020-04-03T18:18:09.597806Z", "url": "https://files.pythonhosted.org/packages/dd/33/560f114f0da06b6d1ec06642e097f063b2e5caef3924fd326564a6de1d6e/taskcluster-28.2.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3aace1c6e79f13f73fc80b651e5fb529", "sha256": "2668d9deba3c6ab6c61dc0e26f53acf4647c3bcdfa4a6d06c19f9df961e51488" }, "downloads": -1, "filename": "taskcluster-28.2.1-py3-none-any.whl", "has_sig": false, "md5_digest": "3aace1c6e79f13f73fc80b651e5fb529", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120161, "upload_time": "2020-04-03T18:18:11", "upload_time_iso_8601": "2020-04-03T18:18:11.633148Z", "url": "https://files.pythonhosted.org/packages/44/de/a0603ed69188eaf90fb96b7fa03d26cbe2d29aab85ee72753c8f4a0413d8/taskcluster-28.2.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f52ff6953dbb361eac55a090b5d3fe38", "sha256": "7672e62fb0b95b52b79d23b95c921f31357bb7081ebf125567853e7536d5db28" }, "downloads": -1, "filename": "taskcluster-28.2.1.tar.gz", "has_sig": false, "md5_digest": "f52ff6953dbb361eac55a090b5d3fe38", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96626, "upload_time": "2020-04-03T18:18:13", "upload_time_iso_8601": "2020-04-03T18:18:13.410588Z", "url": "https://files.pythonhosted.org/packages/a1/2a/1c103b3f71abf80bc3ac3bd12b113f183a7c7638a6ce19f006628bf34456/taskcluster-28.2.1.tar.gz", "yanked": false, "yanked_reason": null } ], "28.2.2": [ { "comment_text": "", "digests": { "md5": "4029af871312768fee7317f6f04555c8", "sha256": "fd10029b2e4498a6aab2946e83fb3c052619b088a2e989fb30277f6e00cc870f" }, "downloads": -1, "filename": "taskcluster-28.2.2-py2-none-any.whl", "has_sig": false, "md5_digest": "4029af871312768fee7317f6f04555c8", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120155, "upload_time": "2020-04-06T21:37:28", "upload_time_iso_8601": "2020-04-06T21:37:28.446245Z", "url": "https://files.pythonhosted.org/packages/1c/8e/e5e03df439d010103d2176ce0b779858a1ffb84d6e1d3256a61a66c01759/taskcluster-28.2.2-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "15f32ce38287666ee7168e1a1b863cd3", "sha256": "3f71e0644c01fd34eec9ebc95f65d2296369ee8def50179f13b686aa3a0f1265" }, "downloads": -1, "filename": "taskcluster-28.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "15f32ce38287666ee7168e1a1b863cd3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120162, "upload_time": "2020-04-06T21:37:30", "upload_time_iso_8601": "2020-04-06T21:37:30.540875Z", "url": "https://files.pythonhosted.org/packages/39/96/94e5ee58eb2eb19bba32590be5d36ce318b4e91f42a3dde97b3f53a57a4c/taskcluster-28.2.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fd2c5fa2e96a882b4302e3e7953c4d6b", "sha256": "7a39d1eeddd7464d218b5f8a5e2d8c01875352300cb4c3fde8680190148ec16e" }, "downloads": -1, "filename": "taskcluster-28.2.2.tar.gz", "has_sig": false, "md5_digest": "fd2c5fa2e96a882b4302e3e7953c4d6b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96624, "upload_time": "2020-04-06T21:37:32", "upload_time_iso_8601": "2020-04-06T21:37:32.431731Z", "url": "https://files.pythonhosted.org/packages/9d/65/011ef2b44a8db070c1ac246cbd360e9eca1b42904d1b57c750a9a9b3aa90/taskcluster-28.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "28.2.3": [ { "comment_text": "", "digests": { "md5": "cac1b4e8d3e0a67abccb6a0e76d6edea", "sha256": "b98d5846d2c4bbde22caddfb49f240a8780349c6a3f0af63c78266abe0c08ab7" }, "downloads": -1, "filename": "taskcluster-28.2.3-py2-none-any.whl", "has_sig": false, "md5_digest": "cac1b4e8d3e0a67abccb6a0e76d6edea", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120155, "upload_time": "2020-04-09T16:52:21", "upload_time_iso_8601": "2020-04-09T16:52:21.251452Z", "url": "https://files.pythonhosted.org/packages/77/ca/6e2222959e67c0e6de7708d6d34f839fea081772ad531374928d3b890a0f/taskcluster-28.2.3-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "318fd30d7140c78b941c4e133d9c4ed6", "sha256": "8d555bdc5d76ce2f7ddf88f56591ba3ddee8b2cfd00776793359a12eb861dd07" }, "downloads": -1, "filename": "taskcluster-28.2.3-py3-none-any.whl", "has_sig": false, "md5_digest": "318fd30d7140c78b941c4e133d9c4ed6", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120163, "upload_time": "2020-04-09T16:52:23", "upload_time_iso_8601": "2020-04-09T16:52:23.340150Z", "url": "https://files.pythonhosted.org/packages/d5/31/a17de36a02b2bc6050a02eb8c4e8f287d4583462193bd8cb5cff3e97d971/taskcluster-28.2.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "91fa50284314451c4517f5f32bbba5fe", "sha256": "98820acc3e9252b39f298b40ef22694c66a583ef8a0b4d95708867e6199080ab" }, "downloads": -1, "filename": "taskcluster-28.2.3.tar.gz", "has_sig": false, "md5_digest": "91fa50284314451c4517f5f32bbba5fe", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96622, "upload_time": "2020-04-09T16:52:25", "upload_time_iso_8601": "2020-04-09T16:52:25.163553Z", "url": "https://files.pythonhosted.org/packages/1b/2a/a973e2a2012a16dff217e27118e9a7d2d3a86c7693d14797ca63c22c460d/taskcluster-28.2.3.tar.gz", "yanked": false, "yanked_reason": null } ], "29.0.0": [ { "comment_text": "", "digests": { "md5": "37b22ac89d32724fab3101cfd8dfcd98", "sha256": "cff617d064038a839dc183f45e166f89e3d7b3c3832e549819ffd663939103b7" }, "downloads": -1, "filename": "taskcluster-29.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "37b22ac89d32724fab3101cfd8dfcd98", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120155, "upload_time": "2020-04-09T20:21:36", "upload_time_iso_8601": "2020-04-09T20:21:36.867804Z", "url": "https://files.pythonhosted.org/packages/99/f1/e0310266d94e64863f78d9c3aa55c99530b3595f890f5267ac9479d2eca8/taskcluster-29.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c6382954ac01eaec254dde0c3fd8f94b", "sha256": "c0afe7662cc4c75db8aeeafab6d97f63dc8eee7182e3035cd09e67271945ed8f" }, "downloads": -1, "filename": "taskcluster-29.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c6382954ac01eaec254dde0c3fd8f94b", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120162, "upload_time": "2020-04-09T20:21:39", "upload_time_iso_8601": "2020-04-09T20:21:39.126246Z", "url": "https://files.pythonhosted.org/packages/ad/03/655157d749f789b1680223a03a2bc4da91b03629c884bb6f50d4e3f7f021/taskcluster-29.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99fa3a33fe28f26cd279d85eb92a7201", "sha256": "d336638174ced8df9bb1d36e54c15fe730610e0bcf2df5532b922e0c1a7d8c25" }, "downloads": -1, "filename": "taskcluster-29.0.0.tar.gz", "has_sig": false, "md5_digest": "99fa3a33fe28f26cd279d85eb92a7201", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96618, "upload_time": "2020-04-09T20:21:40", "upload_time_iso_8601": "2020-04-09T20:21:40.895901Z", "url": "https://files.pythonhosted.org/packages/45/19/6099e964bea175f854686f871cac545c3fd577f51a32690e662a95227abc/taskcluster-29.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "29.0.1": [ { "comment_text": "", "digests": { "md5": "a64bbc3312cb183134de97db1c3e1bf9", "sha256": "ee37d56c3d8c83722e66ef6ca4a54ce1916ef2e452c05672f9935b65d969a433" }, "downloads": -1, "filename": "taskcluster-29.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "a64bbc3312cb183134de97db1c3e1bf9", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120155, "upload_time": "2020-04-10T13:54:39", "upload_time_iso_8601": "2020-04-10T13:54:39.766068Z", "url": "https://files.pythonhosted.org/packages/22/c9/4a5fa1bea752575ded5dbe62c3fb4fe98c1d5834c8a526b845d542e8391d/taskcluster-29.0.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c34570eae7a8b40c464461e4b7ed0286", "sha256": "59955ebf085980d3ffbc8edac548ab479c9423af6c7f8ae502c312d16615e7ee" }, "downloads": -1, "filename": "taskcluster-29.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c34570eae7a8b40c464461e4b7ed0286", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120162, "upload_time": "2020-04-10T13:54:42", "upload_time_iso_8601": "2020-04-10T13:54:42.366175Z", "url": "https://files.pythonhosted.org/packages/7e/d5/ddaa91aec2b61e3a19799548ab5e50f30cdf2d4764856e9adf534e2f1e1b/taskcluster-29.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "82a646df787f3ee3afe64a46f9972990", "sha256": "8eaa33c600843272618f1998a38d4dcf9d374a5604882d9a53c3acd1e8af4fe5" }, "downloads": -1, "filename": "taskcluster-29.0.1.tar.gz", "has_sig": false, "md5_digest": "82a646df787f3ee3afe64a46f9972990", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96608, "upload_time": "2020-04-10T13:54:44", "upload_time_iso_8601": "2020-04-10T13:54:44.184126Z", "url": "https://files.pythonhosted.org/packages/d1/bf/dd8c7df5d9ddfd2dd2bf6a7ecfc38a978660e4558a63d5c573149b5f62d7/taskcluster-29.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "29.1.2": [ { "comment_text": "", "digests": { "md5": "02a47afccece1cd643c3a2b3ca73cf35", "sha256": "bd3c27c69c4bff1f668d640f296d99585e26530190d7f1a80f43a3b3a175b605" }, "downloads": -1, "filename": "taskcluster-29.1.2-py2-none-any.whl", "has_sig": false, "md5_digest": "02a47afccece1cd643c3a2b3ca73cf35", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120176, "upload_time": "2020-04-23T03:28:22", "upload_time_iso_8601": "2020-04-23T03:28:22.709466Z", "url": "https://files.pythonhosted.org/packages/4b/c6/be25e5a01acdeebb642244249b2769f9196101f197f8f12c2809116e764b/taskcluster-29.1.2-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ad84084d0284fbf21d85ce331403996", "sha256": "7bd1e65ad06a99c418696596a8363ccf732480cd41c47d0b5303194e7d9be6e8" }, "downloads": -1, "filename": "taskcluster-29.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "2ad84084d0284fbf21d85ce331403996", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120184, "upload_time": "2020-04-23T03:28:24", "upload_time_iso_8601": "2020-04-23T03:28:24.476720Z", "url": "https://files.pythonhosted.org/packages/7d/aa/55e41918c8f39c2b233ffb8cb71cf6b14c3a5d67829594cf3cc15903fa2e/taskcluster-29.1.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cc09866317f2aa4a51e0743eba63ee7c", "sha256": "a9de9bc7d9e882c019bc24473e97357c8b80df45295ecceb8f0543e062a0b3da" }, "downloads": -1, "filename": "taskcluster-29.1.2.tar.gz", "has_sig": false, "md5_digest": "cc09866317f2aa4a51e0743eba63ee7c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96637, "upload_time": "2020-04-23T03:28:26", "upload_time_iso_8601": "2020-04-23T03:28:26.145731Z", "url": "https://files.pythonhosted.org/packages/aa/98/fd146d7d2f39e04171c119c5600e87e0abefacdabe4b0bdf0e56408ecbf0/taskcluster-29.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "29.1.3": [ { "comment_text": "", "digests": { "md5": "757aa154ef32a8a9fd72b972cf338c54", "sha256": "1ac2d3fc59bbc6a804153f04df35d205343c816593fbd3945697accfa65225c4" }, "downloads": -1, "filename": "taskcluster-29.1.3-py2-none-any.whl", "has_sig": false, "md5_digest": "757aa154ef32a8a9fd72b972cf338c54", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120175, "upload_time": "2020-04-24T22:39:13", "upload_time_iso_8601": "2020-04-24T22:39:13.486032Z", "url": "https://files.pythonhosted.org/packages/ba/c0/418cd651f61a3799f2e9f76852e054591078c9798823f465686af9816bcb/taskcluster-29.1.3-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "37ec6483ea07e5c71e4df5a9a15c7fa1", "sha256": "124b02679fb143bbdbdb8471c2c780761b1e83a690ac4880abc2540e0c93992c" }, "downloads": -1, "filename": "taskcluster-29.1.3-py3-none-any.whl", "has_sig": false, "md5_digest": "37ec6483ea07e5c71e4df5a9a15c7fa1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120182, "upload_time": "2020-04-24T22:39:15", "upload_time_iso_8601": "2020-04-24T22:39:15.439371Z", "url": "https://files.pythonhosted.org/packages/5a/93/4c54a8b94f350b6ae1243ccd07a3e6af9f2f7cf7c0031fdbf1c0f8ae26a9/taskcluster-29.1.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b2149e50ea74f8647520688ae472ee76", "sha256": "83777a374f6541f7aaf96fa6d512916a0b91dd2a154c9922ae435708add2eff7" }, "downloads": -1, "filename": "taskcluster-29.1.3.tar.gz", "has_sig": false, "md5_digest": "b2149e50ea74f8647520688ae472ee76", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96648, "upload_time": "2020-04-24T22:39:17", "upload_time_iso_8601": "2020-04-24T22:39:17.233395Z", "url": "https://files.pythonhosted.org/packages/2d/ac/cd7381d10e79ff5448ef3f1d4c45310ff2919c2b6eda3d89a7a6bc8b141b/taskcluster-29.1.3.tar.gz", "yanked": false, "yanked_reason": null } ], "29.2.0": [ { "comment_text": "", "digests": { "md5": "5c4e24a81f714de8a388537ce5663067", "sha256": "7a5755b7442b73628ba7ddd58efd6b2acc9227c2c74e2db7267cd317c579bcd1" }, "downloads": -1, "filename": "taskcluster-29.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "5c4e24a81f714de8a388537ce5663067", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120175, "upload_time": "2020-04-28T20:20:13", "upload_time_iso_8601": "2020-04-28T20:20:13.105516Z", "url": "https://files.pythonhosted.org/packages/9f/0c/c8adbef1be6141844382b1278d4a3f35b1d7d367575ce145f45533ed0e80/taskcluster-29.2.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e131f719c73d2eeaf95a00f5277091ac", "sha256": "910470e6372f4f2f3c0b414d9cd85865894edf738ba24e679956ff9cef2a2ecc" }, "downloads": -1, "filename": "taskcluster-29.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e131f719c73d2eeaf95a00f5277091ac", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120183, "upload_time": "2020-04-28T20:20:14", "upload_time_iso_8601": "2020-04-28T20:20:14.869170Z", "url": "https://files.pythonhosted.org/packages/00/53/d0e264838020da41f2af30c190c029a7edef21f8b7aad397f95785fe00b4/taskcluster-29.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2877ff9b28cb47b3c8df67ed07572382", "sha256": "c2ddbd22f2206d8e4f9ff499ce2c4e5295bd2d4485e3197fcc467e5fde0c2222" }, "downloads": -1, "filename": "taskcluster-29.2.0.tar.gz", "has_sig": false, "md5_digest": "2877ff9b28cb47b3c8df67ed07572382", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96653, "upload_time": "2020-04-28T20:20:16", "upload_time_iso_8601": "2020-04-28T20:20:16.538690Z", "url": "https://files.pythonhosted.org/packages/e4/8c/bac4583e1ae6f29ba60e36e329d7c2581f320f256ad4435dc3641d93d86f/taskcluster-29.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "29.3.0": [ { "comment_text": "", "digests": { "md5": "590e0372b7fb2a91b0652e492f516cbf", "sha256": "286e171402aa20c79953cce18d4712c952c249352844c1fc42ea5f6cac470bdc" }, "downloads": -1, "filename": "taskcluster-29.3.0-py2-none-any.whl", "has_sig": false, "md5_digest": "590e0372b7fb2a91b0652e492f516cbf", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120174, "upload_time": "2020-05-04T13:54:00", "upload_time_iso_8601": "2020-05-04T13:54:00.309230Z", "url": "https://files.pythonhosted.org/packages/e2/bb/fa657050aa13bd8c833bc975ad24359f88b3f5be4376cb8b5926634c509e/taskcluster-29.3.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7916e502d58183bbf6507693571b9a81", "sha256": "919bd01dd99df758a5cb4744eec3846905e0d829cb5ef302cf3179af662bab72" }, "downloads": -1, "filename": "taskcluster-29.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7916e502d58183bbf6507693571b9a81", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120182, "upload_time": "2020-05-04T13:54:02", "upload_time_iso_8601": "2020-05-04T13:54:02.006791Z", "url": "https://files.pythonhosted.org/packages/dd/6b/e0925aab9102047ded0a4a5423da88fdb525e427fc56404a492e4b425037/taskcluster-29.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e56163bf610ee637c6b15fa6526aab84", "sha256": "1f75471680f5997f4a4f8c67fec96c6efec49c1f80fca7a10063912eeae894c8" }, "downloads": -1, "filename": "taskcluster-29.3.0.tar.gz", "has_sig": false, "md5_digest": "e56163bf610ee637c6b15fa6526aab84", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96649, "upload_time": "2020-05-04T13:54:03", "upload_time_iso_8601": "2020-05-04T13:54:03.697590Z", "url": "https://files.pythonhosted.org/packages/f5/82/b53067d8cb2378f125e9bdd8f249af75f0af00a9fc62bdbf97d46c3849e2/taskcluster-29.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "29.4.0": [ { "comment_text": "", "digests": { "md5": "4c98202c9dc09fdaf0569a7ca5720338", "sha256": "052d7ab17a825d173ee1d43bb66e113227eea3da50c555707ed5a0ef59ec4ba6" }, "downloads": -1, "filename": "taskcluster-29.4.0-py2-none-any.whl", "has_sig": false, "md5_digest": "4c98202c9dc09fdaf0569a7ca5720338", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120175, "upload_time": "2020-05-07T20:45:12", "upload_time_iso_8601": "2020-05-07T20:45:12.711399Z", "url": "https://files.pythonhosted.org/packages/db/a0/3f9e6b72f791c5bd89dae9fd640efd3fe2573278450f8aedfcc04c77b466/taskcluster-29.4.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "86406db38e03b3e2d26256cd56d5f0e4", "sha256": "874e2e0ed8a19872f9263336c512e93ab9db91b56fd7eae6d510188d6c31aeb9" }, "downloads": -1, "filename": "taskcluster-29.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "86406db38e03b3e2d26256cd56d5f0e4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120183, "upload_time": "2020-05-07T20:45:14", "upload_time_iso_8601": "2020-05-07T20:45:14.378617Z", "url": "https://files.pythonhosted.org/packages/a9/bf/44cfc4135c9b7b26c3e25aac3231e3ac69495d8f3b9ee175d3aaa2c9d469/taskcluster-29.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "bbb74fc7e93fdee0a88860f331d32f32", "sha256": "35404336c720c33c73e5021224490be8b671abb14a28ac2fbcceb1cfbd5f60ff" }, "downloads": -1, "filename": "taskcluster-29.4.0.tar.gz", "has_sig": false, "md5_digest": "bbb74fc7e93fdee0a88860f331d32f32", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96835, "upload_time": "2020-05-07T20:45:16", "upload_time_iso_8601": "2020-05-07T20:45:16.470799Z", "url": "https://files.pythonhosted.org/packages/00/bc/8f129905697dbf4729ccfaf4020f4cb0fd9d71de1136db756d5882b897c7/taskcluster-29.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "29.4.1": [ { "comment_text": "", "digests": { "md5": "5f4e2ae458ce5da90e6d424860519787", "sha256": "f73176dcd6f5cfd4b8802c7637f775e98c0a9870b2d195e8aadb62c7bb172ad8" }, "downloads": -1, "filename": "taskcluster-29.4.1-py2-none-any.whl", "has_sig": false, "md5_digest": "5f4e2ae458ce5da90e6d424860519787", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120174, "upload_time": "2020-05-08T19:41:41", "upload_time_iso_8601": "2020-05-08T19:41:41.318983Z", "url": "https://files.pythonhosted.org/packages/0f/15/e034ecb51f1c7271022a4c878f455cdb6db3d95728ce61ea33374a8750a8/taskcluster-29.4.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "68ae907d784e2254752847726b0914e9", "sha256": "77cd196908cde667db4cecf1c07f613c135eaeb5c34cd61c56aa3ab8450fb1d6" }, "downloads": -1, "filename": "taskcluster-29.4.1-py3-none-any.whl", "has_sig": false, "md5_digest": "68ae907d784e2254752847726b0914e9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120181, "upload_time": "2020-05-08T19:41:42", "upload_time_iso_8601": "2020-05-08T19:41:42.959298Z", "url": "https://files.pythonhosted.org/packages/9a/91/73654f1a3915257bc377d5c478e48bc2558e6a9050607be89643551ed7dd/taskcluster-29.4.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e181fcbfd80007564cc48c11e2cd0fea", "sha256": "7736c064428276a1bf0f19b3fd59b3c8ca2fc7015a141d4c5c2e0ba477a01c59" }, "downloads": -1, "filename": "taskcluster-29.4.1.tar.gz", "has_sig": false, "md5_digest": "e181fcbfd80007564cc48c11e2cd0fea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96839, "upload_time": "2020-05-08T19:41:44", "upload_time_iso_8601": "2020-05-08T19:41:44.295858Z", "url": "https://files.pythonhosted.org/packages/f1/e2/fb49182930b61f2a20c07911a7b9838e32b657f735e1177bcf011d5b6c98/taskcluster-29.4.1.tar.gz", "yanked": false, "yanked_reason": null } ], "29.5.2": [ { "comment_text": "", "digests": { "md5": "5f50eacbaedf468d7dea9d2c70f9e4b2", "sha256": "7d7862de12650fd292c174946fb6ca0e45e6b01557da31bfdbd6371be3b90b77" }, "downloads": -1, "filename": "taskcluster-29.5.2-py2-none-any.whl", "has_sig": false, "md5_digest": "5f50eacbaedf468d7dea9d2c70f9e4b2", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120176, "upload_time": "2020-05-13T22:27:57", "upload_time_iso_8601": "2020-05-13T22:27:57.385911Z", "url": "https://files.pythonhosted.org/packages/76/b6/45de3b6b045643e1589f47aae32122a93d88dbe0401e076af948f8fe89be/taskcluster-29.5.2-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "06008a8dae0f22143372827d732df3cb", "sha256": "e298b20a72e16af3a9b887d085165816eae2de1d1af81bd7c47afacdb26fe0d9" }, "downloads": -1, "filename": "taskcluster-29.5.2-py3-none-any.whl", "has_sig": false, "md5_digest": "06008a8dae0f22143372827d732df3cb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120183, "upload_time": "2020-05-13T22:27:58", "upload_time_iso_8601": "2020-05-13T22:27:58.995057Z", "url": "https://files.pythonhosted.org/packages/30/98/e6d4d0c72bae6a8a896faaef0b65ab1be7714c9ec33622aca5adac6f7fd1/taskcluster-29.5.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8a5bea6078b238784bc19abafeea942b", "sha256": "d645745ad93426b41ee6b80f9c3e8ad0cd8f7ca254c10b0e06f69922754f42b5" }, "downloads": -1, "filename": "taskcluster-29.5.2.tar.gz", "has_sig": false, "md5_digest": "8a5bea6078b238784bc19abafeea942b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96840, "upload_time": "2020-05-13T22:28:00", "upload_time_iso_8601": "2020-05-13T22:28:00.778658Z", "url": "https://files.pythonhosted.org/packages/38/b3/90fb707b5e40f3347c2f9f6f6e43c5be340d4b37e1c549401c91e0969fd6/taskcluster-29.5.2.tar.gz", "yanked": false, "yanked_reason": null } ], "29.6.0": [ { "comment_text": "", "digests": { "md5": "eef97179b144ecedbd091383e9bfcced", "sha256": "7d860fba5f528a60560b4f569ab62926fc56d3677d4806acebec0303d85e148f" }, "downloads": -1, "filename": "taskcluster-29.6.0-py2-none-any.whl", "has_sig": false, "md5_digest": "eef97179b144ecedbd091383e9bfcced", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120176, "upload_time": "2020-05-14T21:50:09", "upload_time_iso_8601": "2020-05-14T21:50:09.485050Z", "url": "https://files.pythonhosted.org/packages/80/22/2aa38e06905ad6249d57ceb13e8e5a0782dcfb14d57b186978a475f36269/taskcluster-29.6.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d822625449880293661f9d160ccc063", "sha256": "a6a3ec1e50cb6f245f0238df4e5ff858404ac2e5fbb96ef1bf9f0f6be9720183" }, "downloads": -1, "filename": "taskcluster-29.6.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2d822625449880293661f9d160ccc063", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120184, "upload_time": "2020-05-14T21:50:11", "upload_time_iso_8601": "2020-05-14T21:50:11.479729Z", "url": "https://files.pythonhosted.org/packages/92/5f/a66335cf048f4122cc77fd4b03517fe28e512fbf1ebd28f5de2e8022bc9e/taskcluster-29.6.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f00ec11b5468209dd8a1aef511464ed5", "sha256": "84285a53428f010b8c9da035bff893103f20e33b8375ce21e4da85574afd4512" }, "downloads": -1, "filename": "taskcluster-29.6.0.tar.gz", "has_sig": false, "md5_digest": "f00ec11b5468209dd8a1aef511464ed5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96836, "upload_time": "2020-05-14T21:50:13", "upload_time_iso_8601": "2020-05-14T21:50:13.060996Z", "url": "https://files.pythonhosted.org/packages/e1/02/15137e1172a68b648ec78f1333abe72141d479c4cf7a814f215454e50bf0/taskcluster-29.6.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.0": [ { "comment_text": "", "digests": { "md5": "d74eb9f7a017343f2c8f83add09e096d", "sha256": "e3be177449ee82905e1d8c60780082fa28e5ab13d14d51bc54a727e18b96f021" }, "downloads": -1, "filename": "taskcluster-3.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "d74eb9f7a017343f2c8f83add09e096d", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 114975, "upload_time": "2018-04-04T14:22:12", "upload_time_iso_8601": "2018-04-04T14:22:12.732352Z", "url": "https://files.pythonhosted.org/packages/ee/c3/2b4715359841b21a229d94773dfa009ad184fa88c5e6cc0e5da29c4dde77/taskcluster-3.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2d0b904af83a3491bdb03840cc439f92", "sha256": "e258b79dfc5363baa41216fdce92c806c07a5ff4435be65b37bb17126b82fb15" }, "downloads": -1, "filename": "taskcluster-3.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2d0b904af83a3491bdb03840cc439f92", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 114996, "upload_time": "2018-04-04T14:22:14", "upload_time_iso_8601": "2018-04-04T14:22:14.385308Z", "url": "https://files.pythonhosted.org/packages/a3/4d/861fbba0ff70d3af59afc9b82400027079aa8b0c4933e7267f71001f3288/taskcluster-3.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "72c7383057404745a99c6de010d3455d", "sha256": "e99b11496ad3586c0a4295dc6a2a68534e93037ddc20b0b380e90908d21f1c43" }, "downloads": -1, "filename": "taskcluster-3.0.0.tar.gz", "has_sig": false, "md5_digest": "72c7383057404745a99c6de010d3455d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 122619, "upload_time": "2018-04-04T14:22:15", "upload_time_iso_8601": "2018-04-04T14:22:15.784200Z", "url": "https://files.pythonhosted.org/packages/90/77/8dca8f65f53a299f27a4154cd586dc06a4214008f2f21de062e85882eceb/taskcluster-3.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.1": [ { "comment_text": "", "digests": { "md5": "ed8d65d09629b403a04726ecef8d5b31", "sha256": "f57d3c57b79c81a2c4aa403e9477ddd2d06456483be21676ce7ecfcfa35d350c" }, "downloads": -1, "filename": "taskcluster-3.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "ed8d65d09629b403a04726ecef8d5b31", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 117203, "upload_time": "2018-05-10T17:26:44", "upload_time_iso_8601": "2018-05-10T17:26:44.420699Z", "url": "https://files.pythonhosted.org/packages/18/82/a815996277be52a5a08c09676d1506b99c37ddec2d665be1c62c23a94101/taskcluster-3.0.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6eac7d0c4792748f1fdbd2950181bce3", "sha256": "aa332a80b3b6db8de057f29e670e9cb4f0b2a971616b4bfd4135fce3fe2387fc" }, "downloads": -1, "filename": "taskcluster-3.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "6eac7d0c4792748f1fdbd2950181bce3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 117224, "upload_time": "2018-05-10T17:26:46", "upload_time_iso_8601": "2018-05-10T17:26:46.091208Z", "url": "https://files.pythonhosted.org/packages/5c/eb/80a3334473a73fd5cb82253ed5833ed791345ffd8b44a824519827ac86d9/taskcluster-3.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "83459b5428433f0f42cf8f6328f97dad", "sha256": "ec7d5f9afb6462cc22b694d354fa8172142343c88e06212daaeeb06890ba17fb" }, "downloads": -1, "filename": "taskcluster-3.0.1.tar.gz", "has_sig": false, "md5_digest": "83459b5428433f0f42cf8f6328f97dad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126038, "upload_time": "2018-05-10T17:26:47", "upload_time_iso_8601": "2018-05-10T17:26:47.760586Z", "url": "https://files.pythonhosted.org/packages/64/49/9758e26959454dce6d824a416fb84b990782c3303e39249fa792ea65106d/taskcluster-3.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "3.0.2": [ { "comment_text": "", "digests": { "md5": "879dcf0b91ad284fceb67d9b8165822f", "sha256": "9b5269735a747fecf0530b5caf3dd4905a86c73534338e48ba268bf55f0938ff" }, "downloads": -1, "filename": "taskcluster-3.0.2-py2-none-any.whl", "has_sig": false, "md5_digest": "879dcf0b91ad284fceb67d9b8165822f", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 116952, "upload_time": "2018-07-02T16:15:50", "upload_time_iso_8601": "2018-07-02T16:15:50.741073Z", "url": "https://files.pythonhosted.org/packages/60/6f/3792dc695734f0d8f630c369dd98d8282de4fea404ab44af8e7ded7348ca/taskcluster-3.0.2-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "281c8eb711553d3ef0cb7d0bfbc71498", "sha256": "0794163ac0089317bd398cea00ed01e173edacaa17c4ce517c7fdde639ae145e" }, "downloads": -1, "filename": "taskcluster-3.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "281c8eb711553d3ef0cb7d0bfbc71498", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 116971, "upload_time": "2018-07-02T16:15:52", "upload_time_iso_8601": "2018-07-02T16:15:52.556040Z", "url": "https://files.pythonhosted.org/packages/47/6d/1726a1c0cdefcef6a387f4c11bbca1bdffba8393784041d727e96dcf94b7/taskcluster-3.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "583fa6ad325cfda4c25a05cc13d16fc5", "sha256": "e3a344da01f2fe2c8c09fc893c12109bda81b0f6c6d22ccedc0814506620e89d" }, "downloads": -1, "filename": "taskcluster-3.0.2.tar.gz", "has_sig": false, "md5_digest": "583fa6ad325cfda4c25a05cc13d16fc5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 125864, "upload_time": "2018-07-02T16:15:54", "upload_time_iso_8601": "2018-07-02T16:15:54.119997Z", "url": "https://files.pythonhosted.org/packages/d1/1a/14a9a6d8b89c07f6f5508fdbed8f55812d39a3b274ae744e5045f63f90d3/taskcluster-3.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "30.0.0": [ { "comment_text": "", "digests": { "md5": "09d45c59a34b54d2d539d5b55ffe32c6", "sha256": "91dc4d8934b3fb58ca090584012fd09520b96734ebfbc7813121777192e1c16d" }, "downloads": -1, "filename": "taskcluster-30.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "09d45c59a34b54d2d539d5b55ffe32c6", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 119892, "upload_time": "2020-05-21T20:29:53", "upload_time_iso_8601": "2020-05-21T20:29:53.213397Z", "url": "https://files.pythonhosted.org/packages/ce/e8/85d803d60d238cff3a69260fb099473a034c1eee167b89cdeab008dbf418/taskcluster-30.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef25db2db4cf311fc389d433d6db4b34", "sha256": "57c9db7f8bd4b79c823f2aa17e184ae2e6e8ea9f8daee53ffa05f1d473744c9f" }, "downloads": -1, "filename": "taskcluster-30.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ef25db2db4cf311fc389d433d6db4b34", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 119899, "upload_time": "2020-05-21T20:29:54", "upload_time_iso_8601": "2020-05-21T20:29:54.838416Z", "url": "https://files.pythonhosted.org/packages/22/5d/3f6153a063f7cef2b647c233d61daaf85bf1f89df768825c29340d7b3052/taskcluster-30.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "33ec7b2eb300747f03af1124275c55f0", "sha256": "171f0172eb8ffc313c1dcae3e6c102b582585bd6aa371cbf3e6d347330bb5076" }, "downloads": -1, "filename": "taskcluster-30.0.0.tar.gz", "has_sig": false, "md5_digest": "33ec7b2eb300747f03af1124275c55f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96557, "upload_time": "2020-05-21T20:29:56", "upload_time_iso_8601": "2020-05-21T20:29:56.811146Z", "url": "https://files.pythonhosted.org/packages/b5/45/d50bab5246c3f46aeb2fd8a4b0aad403f6f2e77bbadc8b5ed029ab639e90/taskcluster-30.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "30.0.1": [ { "comment_text": "", "digests": { "md5": "918f2c1249de63cb2b6b6dc957460b82", "sha256": "5e9697b90a00c9a3f1c41588711298dbb0b0ce064c161dd62b70e49e51697652" }, "downloads": -1, "filename": "taskcluster-30.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "918f2c1249de63cb2b6b6dc957460b82", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 119893, "upload_time": "2020-05-21T21:51:21", "upload_time_iso_8601": "2020-05-21T21:51:21.328902Z", "url": "https://files.pythonhosted.org/packages/bf/61/e6e28d370b387e770ab0177b1db4068211fd7da7fa2c729dd74eecb8c624/taskcluster-30.0.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2a648903cad863704914c1dadb124f33", "sha256": "a6ef9d24a05749707f600abe2f4d9989d662fc6620cec5c8292650c8a747eb65" }, "downloads": -1, "filename": "taskcluster-30.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "2a648903cad863704914c1dadb124f33", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 119900, "upload_time": "2020-05-21T21:51:22", "upload_time_iso_8601": "2020-05-21T21:51:22.891178Z", "url": "https://files.pythonhosted.org/packages/7e/27/1c25f07e3daa8cc53865ad88b5b994ea238eeb583a46c9e8ad18f9598583/taskcluster-30.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2fb72229a2d1b944bd444a9b186748ae", "sha256": "cb5b7c8e68d5e53b5535e91067544948669500ed995545a35c7cec9d091bb403" }, "downloads": -1, "filename": "taskcluster-30.0.1.tar.gz", "has_sig": false, "md5_digest": "2fb72229a2d1b944bd444a9b186748ae", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96562, "upload_time": "2020-05-21T21:51:24", "upload_time_iso_8601": "2020-05-21T21:51:24.595122Z", "url": "https://files.pythonhosted.org/packages/2d/0c/86636805c61631c3c968d87220faf770beeb33bad384a771cae95ab70793/taskcluster-30.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "30.0.2": [ { "comment_text": "", "digests": { "md5": "ab5a24a2d6ecb562d8a5c7a5844173e6", "sha256": "0c7f6112dbfc6495f54250c4dba88bcbe71f1700738ce7c854ef1c1074df73a2" }, "downloads": -1, "filename": "taskcluster-30.0.2-py2-none-any.whl", "has_sig": false, "md5_digest": "ab5a24a2d6ecb562d8a5c7a5844173e6", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 119895, "upload_time": "2020-05-27T15:46:42", "upload_time_iso_8601": "2020-05-27T15:46:42.599938Z", "url": "https://files.pythonhosted.org/packages/fd/d0/d9b3040ca8978215b6fae25edc4ae3c68576d9ebfc5cfd6300e2f9e158a3/taskcluster-30.0.2-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1cf1e20d9e10b182ce33a9a6550089d1", "sha256": "d1b0cb405a5409f308dd3d08a8328784d781b4b4450823026a53f0c985a1de3e" }, "downloads": -1, "filename": "taskcluster-30.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "1cf1e20d9e10b182ce33a9a6550089d1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 119902, "upload_time": "2020-05-27T15:46:44", "upload_time_iso_8601": "2020-05-27T15:46:44.222819Z", "url": "https://files.pythonhosted.org/packages/62/3f/e048f05f7800e5254a35ea697c6de609c37c31dcc8d2741979de7fec7c9a/taskcluster-30.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af608afc9f1cd763c48998b2b8d01071", "sha256": "14627353c7ed752fd60a318d31199da1d7d950d510a5b3b6d9fe8ec825b7f11b" }, "downloads": -1, "filename": "taskcluster-30.0.2.tar.gz", "has_sig": false, "md5_digest": "af608afc9f1cd763c48998b2b8d01071", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96575, "upload_time": "2020-05-27T15:46:45", "upload_time_iso_8601": "2020-05-27T15:46:45.705849Z", "url": "https://files.pythonhosted.org/packages/ca/88/6250add4acaa50a7a1eca3960aabde094ce086c9dfaa9e8a150674add4c8/taskcluster-30.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "30.0.5": [ { "comment_text": "", "digests": { "md5": "13bd9ef8987ac7428c7ebc894c2c2d60", "sha256": "3379168faedd456fd6b61a09411611de9df89b847151eb4e1c9241ee89b33e07" }, "downloads": -1, "filename": "taskcluster-30.0.5-py2-none-any.whl", "has_sig": false, "md5_digest": "13bd9ef8987ac7428c7ebc894c2c2d60", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 119895, "upload_time": "2020-06-05T23:33:45", "upload_time_iso_8601": "2020-06-05T23:33:45.673671Z", "url": "https://files.pythonhosted.org/packages/b7/c3/aab70c9d8b8b2c3610cd601937c6da1d96223f6d8e3403353f4ec27a7b1a/taskcluster-30.0.5-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "77a0af309aa6296a4793eb89db871bc2", "sha256": "e6ee2991a06519184d94cc26f6455ea5756ac0b9f331b481375b25ce0dfd514d" }, "downloads": -1, "filename": "taskcluster-30.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "77a0af309aa6296a4793eb89db871bc2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 119902, "upload_time": "2020-06-05T23:33:47", "upload_time_iso_8601": "2020-06-05T23:33:47.367266Z", "url": "https://files.pythonhosted.org/packages/5e/1e/f0160243a006aa76a5a329da014ee76418d4f2f764a2b307ac21b20ac1fd/taskcluster-30.0.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d214917a104145ab84266010d163f446", "sha256": "331d3d5098b49c9e699822a188b23c32c250c8059f88afdee5576b3fdbba39bc" }, "downloads": -1, "filename": "taskcluster-30.0.5.tar.gz", "has_sig": false, "md5_digest": "d214917a104145ab84266010d163f446", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96565, "upload_time": "2020-06-05T23:33:49", "upload_time_iso_8601": "2020-06-05T23:33:49.001559Z", "url": "https://files.pythonhosted.org/packages/4b/2e/46b7afed05915664b95fb0a67872e0536943023745fc3d0312aa87b93586/taskcluster-30.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "30.1.0": [ { "comment_text": "", "digests": { "md5": "d6485ecd9455a6d4c94cd872aa50ccfd", "sha256": "67c2a5ea3d13f91af10de2a475510295a87998361d9c4ee62cbf24d99f2929a9" }, "downloads": -1, "filename": "taskcluster-30.1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "d6485ecd9455a6d4c94cd872aa50ccfd", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 119894, "upload_time": "2020-06-06T01:30:12", "upload_time_iso_8601": "2020-06-06T01:30:12.008105Z", "url": "https://files.pythonhosted.org/packages/2b/c1/3a0f5eb09e480b2b9ee5e7a1008481ea7a856927ba495016230984b06974/taskcluster-30.1.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "34460a143c97642c613350976ed2a6c1", "sha256": "1a1d776dd4f702df809c7e5c9bed8cd45429ce7ae008b638d6ad990e94fd252e" }, "downloads": -1, "filename": "taskcluster-30.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "34460a143c97642c613350976ed2a6c1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 119901, "upload_time": "2020-06-06T01:30:13", "upload_time_iso_8601": "2020-06-06T01:30:13.723922Z", "url": "https://files.pythonhosted.org/packages/02/ed/9af72df7352f039c002bf029f7b8163133dbb30b43863103171f32ad7bbb/taskcluster-30.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b459dd455ad4b4bbc80a89cb09bf27e7", "sha256": "2a9d1de9f2a50dd82dba6b4f1e9359e575daa2d2c23d54593f98ff0dd31e6dab" }, "downloads": -1, "filename": "taskcluster-30.1.0.tar.gz", "has_sig": false, "md5_digest": "b459dd455ad4b4bbc80a89cb09bf27e7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96574, "upload_time": "2020-06-06T01:30:15", "upload_time_iso_8601": "2020-06-06T01:30:15.289606Z", "url": "https://files.pythonhosted.org/packages/74/36/ea9667cef6b2df45ba4b54a5468820542032ba3141942220e520944533ff/taskcluster-30.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "30.1.1": [ { "comment_text": "", "digests": { "md5": "e50caf2e86dc78aa920fff2031c2a092", "sha256": "9f3548b1898e5f2d345257ea2822ac1d5ec1694e3acdabe3825550b126d2ad30" }, "downloads": -1, "filename": "taskcluster-30.1.1-py2-none-any.whl", "has_sig": false, "md5_digest": "e50caf2e86dc78aa920fff2031c2a092", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 119894, "upload_time": "2020-06-09T18:08:49", "upload_time_iso_8601": "2020-06-09T18:08:49.006158Z", "url": "https://files.pythonhosted.org/packages/90/78/eb17cc9a626e4838296eac11af53076d9e45ba25785a93832525e0c9469c/taskcluster-30.1.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3d9aa8bd54222ff70a8d759136e458a4", "sha256": "4789bfee6b95020c6361301d64c7b7b1518b029fa50c65521914b11898f41a36" }, "downloads": -1, "filename": "taskcluster-30.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "3d9aa8bd54222ff70a8d759136e458a4", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 119901, "upload_time": "2020-06-09T18:08:50", "upload_time_iso_8601": "2020-06-09T18:08:50.633144Z", "url": "https://files.pythonhosted.org/packages/d5/ce/70b273f410b0a65b6ba12a67a2e5a8b360735e2ac3e7bc37d5184f3e918e/taskcluster-30.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "fce2a5476620ec025c636d5472bb4177", "sha256": "96295013ce891c8d86c59353ff24e7e0c0a1d7d2e2e517ab424281af4ff6a64c" }, "downloads": -1, "filename": "taskcluster-30.1.1.tar.gz", "has_sig": false, "md5_digest": "fce2a5476620ec025c636d5472bb4177", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 96566, "upload_time": "2020-06-09T18:08:52", "upload_time_iso_8601": "2020-06-09T18:08:52.017789Z", "url": "https://files.pythonhosted.org/packages/9e/e3/ee74f1f03523b887a67889a668e392850cbb0cdc5f28997c89f826867b5c/taskcluster-30.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "31.0.0": [ { "comment_text": "", "digests": { "md5": "1ff1ee7bdb35f1d3fd81f1db38d27f31", "sha256": "99ffacf79c549da21e665abac1d11fb5a1f73af0af5b0dccdc040ad457f2412a" }, "downloads": -1, "filename": "taskcluster-31.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "1ff1ee7bdb35f1d3fd81f1db38d27f31", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120234, "upload_time": "2020-06-18T17:54:04", "upload_time_iso_8601": "2020-06-18T17:54:04.488258Z", "url": "https://files.pythonhosted.org/packages/b7/c1/cd23b631a9c9b3ff8b4dd328b511cec215ef4039cb067e45e504eb64c427/taskcluster-31.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ad57e484f587bee3ef074c8fe677ee8", "sha256": "611b67e81fd5d6395e0d2f0491bd44d6c2bdff9a1a280bb6881047e0139e1541" }, "downloads": -1, "filename": "taskcluster-31.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "2ad57e484f587bee3ef074c8fe677ee8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120240, "upload_time": "2020-06-18T17:54:06", "upload_time_iso_8601": "2020-06-18T17:54:06.261226Z", "url": "https://files.pythonhosted.org/packages/90/00/1c856e89e937ee6722c4cc9dbd1a23dcb55df85199356a8d316f81064c28/taskcluster-31.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e2a7c43f56f233a9e6e7ac2c1f8050f9", "sha256": "4bddc8985d680e362b641c1a6b08fe46b5489a820874e6e8acddfccc60aa8a48" }, "downloads": -1, "filename": "taskcluster-31.0.0.tar.gz", "has_sig": false, "md5_digest": "e2a7c43f56f233a9e6e7ac2c1f8050f9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97016, "upload_time": "2020-06-18T17:54:07", "upload_time_iso_8601": "2020-06-18T17:54:07.950910Z", "url": "https://files.pythonhosted.org/packages/07/ba/c801493503cc8f486286f9b3f8f1ab5979d8fcbc5905dc45d92ff0254b4b/taskcluster-31.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "32.0.0": [ { "comment_text": "", "digests": { "md5": "22f8e2943bb5a402d9276656dff97732", "sha256": "aca6383763ee15f6867c258fca949c636daa5003bb7e57f873973c9e3f863dff" }, "downloads": -1, "filename": "taskcluster-32.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "22f8e2943bb5a402d9276656dff97732", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120233, "upload_time": "2020-07-06T13:19:25", "upload_time_iso_8601": "2020-07-06T13:19:25.755405Z", "url": "https://files.pythonhosted.org/packages/c1/03/4cba64b42f758b6557b50fb27ad48e63cd999bc2f56e2f261147363c1cae/taskcluster-32.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "71f8db92de3bf666af41752e077b6b6e", "sha256": "1d3247f2b95e91c01207bec74f07cbbf9fbf308b3b286ad033b489bc53afdd42" }, "downloads": -1, "filename": "taskcluster-32.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "71f8db92de3bf666af41752e077b6b6e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120242, "upload_time": "2020-07-06T13:19:27", "upload_time_iso_8601": "2020-07-06T13:19:27.322587Z", "url": "https://files.pythonhosted.org/packages/d6/8c/5a59974010bbe1359809c3f54e757a4891738028fdc184181320f8464758/taskcluster-32.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "1af431c7e04fbf280e81eee2c27db49e", "sha256": "805e91c4a64c7e3e73e070b25ff6f6ad9c6339fd1726ba094a49593881747a60" }, "downloads": -1, "filename": "taskcluster-32.0.0.tar.gz", "has_sig": false, "md5_digest": "1af431c7e04fbf280e81eee2c27db49e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 97009, "upload_time": "2020-07-06T13:19:28", "upload_time_iso_8601": "2020-07-06T13:19:28.621159Z", "url": "https://files.pythonhosted.org/packages/4f/e5/15bbc252b7b0bdfd5163f9a432fb2b4bd96c25bc92d657ca4f365c0f7367/taskcluster-32.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "34.0.1": [ { "comment_text": "", "digests": { "md5": "55e97c274e8ea92e6d5b47fa8b01b383", "sha256": "ce158f537800f865a3abfcb943d92af3ed1294ed783c1318feb5688f23f2b959" }, "downloads": -1, "filename": "taskcluster-34.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "55e97c274e8ea92e6d5b47fa8b01b383", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120234, "upload_time": "2020-07-09T18:31:02", "upload_time_iso_8601": "2020-07-09T18:31:02.568532Z", "url": "https://files.pythonhosted.org/packages/54/80/1130925bfdc8ab7130e2ea6622e99b6b117f61a232da983c0d7a05a2e271/taskcluster-34.0.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ef2bed0be3145ca563130e062a9d0572", "sha256": "e61ba01d4761fda28b5eefed652c5b9311b834faea434406c19ed8a6a8472b23" }, "downloads": -1, "filename": "taskcluster-34.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "ef2bed0be3145ca563130e062a9d0572", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120240, "upload_time": "2020-07-09T18:31:04", "upload_time_iso_8601": "2020-07-09T18:31:04.424320Z", "url": "https://files.pythonhosted.org/packages/ed/20/b1be3c6e827206040451400912bc8403a16ad5e483df6e472132a2231b3c/taskcluster-34.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da7dd3303a3be49d4c0aeeca6bd5b6d1", "sha256": "42615a5d45c86bc1b4819dcfbb02512a4638a2b57d95e1cc29186b43e78c89b3" }, "downloads": -1, "filename": "taskcluster-34.0.1.tar.gz", "has_sig": false, "md5_digest": "da7dd3303a3be49d4c0aeeca6bd5b6d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 89252, "upload_time": "2020-07-09T18:31:05", "upload_time_iso_8601": "2020-07-09T18:31:05.979714Z", "url": "https://files.pythonhosted.org/packages/eb/b3/ef541eca4a50d46c1a7f150dac3c921122b21378d0bf53b801e49dffa31c/taskcluster-34.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "35.0.0": [ { "comment_text": "", "digests": { "md5": "9e26dca604811094244def648b6f0e98", "sha256": "35c26ac537aef41d144300837aa60b6ba3d39295daafd3422fdb909c3fedf7cc" }, "downloads": -1, "filename": "taskcluster-35.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "9e26dca604811094244def648b6f0e98", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120235, "upload_time": "2020-07-24T13:28:06", "upload_time_iso_8601": "2020-07-24T13:28:06.895179Z", "url": "https://files.pythonhosted.org/packages/dc/e5/5eb3c4c0298151532c872fddc66b4a434bfa62a55c60f93393449fb4fc42/taskcluster-35.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ac8238cd775614e09f049e6de50b6fd1", "sha256": "f60e5de976152501ee9520b4cc102fa6e3e2d9630e75bc0045ba5153f9bad594" }, "downloads": -1, "filename": "taskcluster-35.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ac8238cd775614e09f049e6de50b6fd1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120241, "upload_time": "2020-07-24T13:28:08", "upload_time_iso_8601": "2020-07-24T13:28:08.482925Z", "url": "https://files.pythonhosted.org/packages/f6/a1/3551226cb8c7d564e5a35e384c9ca8f194665ee1db6ca92fe3458827f0d9/taskcluster-35.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f753a7b66cd00fed63e4696a36cdfd57", "sha256": "bdabe2b07a25ab38a47caf88d46341303dc854fd2048ac45c8e41cc4eee868bc" }, "downloads": -1, "filename": "taskcluster-35.0.0.tar.gz", "has_sig": false, "md5_digest": "f753a7b66cd00fed63e4696a36cdfd57", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 89248, "upload_time": "2020-07-24T13:28:09", "upload_time_iso_8601": "2020-07-24T13:28:09.968382Z", "url": "https://files.pythonhosted.org/packages/c1/b2/0caaf7a3791ad6f2e59dc4fcb95c14075a85b8c84aa3f75325f257c5d264/taskcluster-35.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "36.0.0": [ { "comment_text": "", "digests": { "md5": "4f71e31ca7e487b7c44c676e9e828d58", "sha256": "40befd65f8f87f4e16295adbdab582117c38eb49f487a184a9e7541dabf3558e" }, "downloads": -1, "filename": "taskcluster-36.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "4f71e31ca7e487b7c44c676e9e828d58", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120265, "upload_time": "2020-08-03T15:21:36", "upload_time_iso_8601": "2020-08-03T15:21:36.740180Z", "url": "https://files.pythonhosted.org/packages/3e/4f/435a98b5bc8a45eb9ab29351c284869f73001b71d859cc7d32e66943f28f/taskcluster-36.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0ff53dc8a460217848b30f190dd4691a", "sha256": "ec268fbcf08c0b1e31018ec6b1bf9b9d99640ab7764db725fbaf8f9a3bcc37c5" }, "downloads": -1, "filename": "taskcluster-36.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "0ff53dc8a460217848b30f190dd4691a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120273, "upload_time": "2020-08-03T15:21:38", "upload_time_iso_8601": "2020-08-03T15:21:38.745792Z", "url": "https://files.pythonhosted.org/packages/dc/d6/c2d8482e5c8ef3d191d5daf073895129ce3c11e71c15bf25002785ae8942/taskcluster-36.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d77c8192af76aff023a411e5d750fd6c", "sha256": "0bcc8e033cedba0e3a1bd61d7f4343ed32f0b2395193bed04c404d0995f8d1eb" }, "downloads": -1, "filename": "taskcluster-36.0.0.tar.gz", "has_sig": false, "md5_digest": "d77c8192af76aff023a411e5d750fd6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 89264, "upload_time": "2020-08-03T15:21:40", "upload_time_iso_8601": "2020-08-03T15:21:40.242983Z", "url": "https://files.pythonhosted.org/packages/3e/a8/1078feb256b64ef78e1d4a28cf392a0b109a8231707b511bb5707549513b/taskcluster-36.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "37.0.0": [ { "comment_text": "", "digests": { "md5": "2ed4df9e6d13f7905a6fb3caa4a1628b", "sha256": "27d38a95a9f89e26f116e07bcf3a0cc2674f08ce0d63c84561fadce369256ce1" }, "downloads": -1, "filename": "taskcluster-37.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "2ed4df9e6d13f7905a6fb3caa4a1628b", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120266, "upload_time": "2020-08-18T21:46:53", "upload_time_iso_8601": "2020-08-18T21:46:53.453186Z", "url": "https://files.pythonhosted.org/packages/cd/a0/bd1558a2c57f1cdbfcddefb15ac8e1f23334b634632a04d54a4ec6e9fefc/taskcluster-37.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b156008e9d24667572fb62224794f88d", "sha256": "1b32e4e2606e02671634f26a98c934df33bd01ee2a32a7fc19158aaf6ee9dcd4" }, "downloads": -1, "filename": "taskcluster-37.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b156008e9d24667572fb62224794f88d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120272, "upload_time": "2020-08-18T21:46:55", "upload_time_iso_8601": "2020-08-18T21:46:55.322822Z", "url": "https://files.pythonhosted.org/packages/b5/7a/100d500d1e12f5b5972f7ddbed9a255b45a8ad8b060ac89c631ed93ee134/taskcluster-37.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "86bbd0d720c5fd2da8baab91714b9579", "sha256": "22b3022e3407bbb16f5b748eada7d1940496214c8504c3d479fae6fa39411479" }, "downloads": -1, "filename": "taskcluster-37.0.0.tar.gz", "has_sig": false, "md5_digest": "86bbd0d720c5fd2da8baab91714b9579", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 89281, "upload_time": "2020-08-18T21:46:57", "upload_time_iso_8601": "2020-08-18T21:46:57.068776Z", "url": "https://files.pythonhosted.org/packages/a2/3f/a795c3320849d01f91251a6e32107595b2129d56a2a3d27db7d042198295/taskcluster-37.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "37.1.0": [ { "comment_text": "", "digests": { "md5": "dbeaa82846eac5a7d4a232cdf69d3b01", "sha256": "30d7a15544a69fe9161bef5f5facedbb01de384cd9a89dcd16131dbcf8f5ae09" }, "downloads": -1, "filename": "taskcluster-37.1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "dbeaa82846eac5a7d4a232cdf69d3b01", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120800, "upload_time": "2020-09-10T16:03:13", "upload_time_iso_8601": "2020-09-10T16:03:13.938965Z", "url": "https://files.pythonhosted.org/packages/ed/c5/eb24d4466ce2149c2132032c5bcf5457c86d6be9fa15a5e063d2e9de3e4c/taskcluster-37.1.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "caabeafb6583924b97d90ee0b0fc1a85", "sha256": "67332fcb93ab662712a74ade9fcc3fcf30333913f23c53f50fb42974ae262ea0" }, "downloads": -1, "filename": "taskcluster-37.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "caabeafb6583924b97d90ee0b0fc1a85", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120806, "upload_time": "2020-09-10T16:03:15", "upload_time_iso_8601": "2020-09-10T16:03:15.856714Z", "url": "https://files.pythonhosted.org/packages/d1/8c/99673aae077df1624e18467618abb0d6fc81f848c486cbaef357d131b04f/taskcluster-37.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9f43bd36615d57ce4f09845d005bce0f", "sha256": "660e9ff10821a39f6ed5e72c99a36ebf3654b1a639aed3b3361eb83ea3a85f9a" }, "downloads": -1, "filename": "taskcluster-37.1.0.tar.gz", "has_sig": false, "md5_digest": "9f43bd36615d57ce4f09845d005bce0f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 89886, "upload_time": "2020-09-10T16:03:17", "upload_time_iso_8601": "2020-09-10T16:03:17.520566Z", "url": "https://files.pythonhosted.org/packages/a1/31/0b28db0e2b6c145fcd912cbd7ae26e5691c313fe1241e42578cead5c2588/taskcluster-37.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "37.2.0": [ { "comment_text": "", "digests": { "md5": "ea62adf5017f88589a3b6ec2b6a1fe99", "sha256": "7113e5c0d013ce653907656c30dff52c6f1c0e0825b88bb8922772c8d20b5f43" }, "downloads": -1, "filename": "taskcluster-37.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "ea62adf5017f88589a3b6ec2b6a1fe99", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 120801, "upload_time": "2020-09-17T20:57:03", "upload_time_iso_8601": "2020-09-17T20:57:03.780096Z", "url": "https://files.pythonhosted.org/packages/cb/cb/272dfc562d5dc8b38ebc18a854af11d98921b9ce42b3601b0f9d54f9fc51/taskcluster-37.2.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "ebcee45d231cecd024ed9af374e1a580", "sha256": "a3c0b28465ceb8c79cb591b0d4a85e797f66a239275c2a59296c265e19fed8bb" }, "downloads": -1, "filename": "taskcluster-37.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ebcee45d231cecd024ed9af374e1a580", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 120807, "upload_time": "2020-09-17T20:57:05", "upload_time_iso_8601": "2020-09-17T20:57:05.408155Z", "url": "https://files.pythonhosted.org/packages/99/bd/b2efdebb56ddbbfe700963c4c0f3366595be3cfa1e3d01ff45c573ff7748/taskcluster-37.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3fcb120cf6c64ba9870687b785eff74d", "sha256": "a25a0fc8d1cbe340cdcb42e6e193c06e245b440a024515a8a07ad469ba2c11a6" }, "downloads": -1, "filename": "taskcluster-37.2.0.tar.gz", "has_sig": false, "md5_digest": "3fcb120cf6c64ba9870687b785eff74d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 89877, "upload_time": "2020-09-17T20:57:06", "upload_time_iso_8601": "2020-09-17T20:57:06.585352Z", "url": "https://files.pythonhosted.org/packages/2c/cd/f91be9bf9bd704c3c765af4e23d20f042ae5ccb178f96e30b7cd5f184591/taskcluster-37.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "37.3.0": [ { "comment_text": "", "digests": { "md5": "51c2cd81a0390425a101d2b8e1abf2b1", "sha256": "6450208f59c46fa367c2ec004dba1befc34a1a63c351175682361203d7954c1a" }, "downloads": -1, "filename": "taskcluster-37.3.0-py2-none-any.whl", "has_sig": false, "md5_digest": "51c2cd81a0390425a101d2b8e1abf2b1", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 121035, "upload_time": "2020-10-02T23:38:36", "upload_time_iso_8601": "2020-10-02T23:38:36.872622Z", "url": "https://files.pythonhosted.org/packages/dd/c1/5937bc9579f332a989b6f96786656acbf684ea64cd114f1772ada11d7d15/taskcluster-37.3.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "9d1933eecf3ff44678e541f82a661344", "sha256": "39a5fbf403b1f0eda0a09b0788aaa05a185525559f800915aaaef5a2d49072c6" }, "downloads": -1, "filename": "taskcluster-37.3.0-py3-none-any.whl", "has_sig": false, "md5_digest": "9d1933eecf3ff44678e541f82a661344", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 121041, "upload_time": "2020-10-02T23:38:41", "upload_time_iso_8601": "2020-10-02T23:38:41.735647Z", "url": "https://files.pythonhosted.org/packages/4c/3d/1f077b422b6fe2c3a4e9d59b9b42e292d6a4dc5e3a06bf9dfcb13f341ebc/taskcluster-37.3.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7ebf2653e3118cc5ff1f3cfc686c729b", "sha256": "c6a18f9febecf6912d708ad4c00c81b0a33d763d14c9583a0eef78f633a2419a" }, "downloads": -1, "filename": "taskcluster-37.3.0.tar.gz", "has_sig": false, "md5_digest": "7ebf2653e3118cc5ff1f3cfc686c729b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90187, "upload_time": "2020-10-02T23:38:43", "upload_time_iso_8601": "2020-10-02T23:38:43.082434Z", "url": "https://files.pythonhosted.org/packages/09/2a/9d67444f81d40a4b205fbd857d6b819e3bf7cc4519ebc8da1ea74aa3c0f1/taskcluster-37.3.0.tar.gz", "yanked": false, "yanked_reason": null } ], "37.4.0": [ { "comment_text": "", "digests": { "md5": "933b0ae3f631d00e8dbeb6ead5374ae9", "sha256": "5b8ecf833630b773667aadf7fc191b073e884f9ad86f6df74cc1826077470716" }, "downloads": -1, "filename": "taskcluster-37.4.0-py2-none-any.whl", "has_sig": false, "md5_digest": "933b0ae3f631d00e8dbeb6ead5374ae9", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 121036, "upload_time": "2020-10-19T15:48:08", "upload_time_iso_8601": "2020-10-19T15:48:08.662621Z", "url": "https://files.pythonhosted.org/packages/31/77/4da986ec6e216b6e5b6c4ce5cef1fd6fa86d0b6bec5e189e11afb4e33940/taskcluster-37.4.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0f7081fb45484986b1da655deda20b12", "sha256": "5d3d17132881e62aa91ba245a8e2a6a57276bec113fd8fe519431aa3505aad84" }, "downloads": -1, "filename": "taskcluster-37.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "0f7081fb45484986b1da655deda20b12", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 121041, "upload_time": "2020-10-19T15:48:10", "upload_time_iso_8601": "2020-10-19T15:48:10.235464Z", "url": "https://files.pythonhosted.org/packages/9b/24/3c5cc63d88e272b75489872f00440743af9e3d16bf6d1641a4581500038b/taskcluster-37.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3f63dc1aa7e23525eab7f9cdba56e2de", "sha256": "4c2899bc534c7f0a6bd322cdfb84dc195629f5298e5b343c6d9e3bab736ea411" }, "downloads": -1, "filename": "taskcluster-37.4.0.tar.gz", "has_sig": false, "md5_digest": "3f63dc1aa7e23525eab7f9cdba56e2de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90197, "upload_time": "2020-10-19T15:48:11", "upload_time_iso_8601": "2020-10-19T15:48:11.707526Z", "url": "https://files.pythonhosted.org/packages/3d/16/b1f950306ae28e528e9177db5f8c1d1c85e0483b68aa4852edb229da4750/taskcluster-37.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "37.5.1": [ { "comment_text": "", "digests": { "md5": "159ec88852c719f9ce9addda3d419f10", "sha256": "f545952c8a2f0b44f0a33889420367846f1d0253c77d3d0d96130c15c8a84133" }, "downloads": -1, "filename": "taskcluster-37.5.1-py2-none-any.whl", "has_sig": false, "md5_digest": "159ec88852c719f9ce9addda3d419f10", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 121036, "upload_time": "2020-10-20T15:12:23", "upload_time_iso_8601": "2020-10-20T15:12:23.470403Z", "url": "https://files.pythonhosted.org/packages/2c/d0/05610b72dcb89495aa0362a12b8bb9023f9d7e6d266076f467aab8f3b552/taskcluster-37.5.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d2a6ef299ad1545d0b0fdd875775c178", "sha256": "61119041b7a707e7ccfdf5b89c6b1e5de9033630f41d63cd4d9e3c4de9fcbeaf" }, "downloads": -1, "filename": "taskcluster-37.5.1-py3-none-any.whl", "has_sig": false, "md5_digest": "d2a6ef299ad1545d0b0fdd875775c178", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 121041, "upload_time": "2020-10-20T15:12:25", "upload_time_iso_8601": "2020-10-20T15:12:25.637414Z", "url": "https://files.pythonhosted.org/packages/0d/14/deb8113138bad58bcbce7af6813c5796e0095a5188b669959ad9aceccb50/taskcluster-37.5.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f0a8659abae197c82ba2967a9b832838", "sha256": "94aa5713336bf78a154af1d709159f9ef6a144f99cb4534534bb19f337bda58e" }, "downloads": -1, "filename": "taskcluster-37.5.1.tar.gz", "has_sig": false, "md5_digest": "f0a8659abae197c82ba2967a9b832838", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90192, "upload_time": "2020-10-20T15:12:27", "upload_time_iso_8601": "2020-10-20T15:12:27.298721Z", "url": "https://files.pythonhosted.org/packages/30/76/84a23a13cd53a50a3a86a40222fcd2f288b827fb048244f91636dd76f1bd/taskcluster-37.5.1.tar.gz", "yanked": false, "yanked_reason": null } ], "38.0.1": [ { "comment_text": "", "digests": { "md5": "717213e84341e6b858780361920c5ee7", "sha256": "f9ae7b9fdf39a1971e5eafc5af3198c2cb0e5916f81f0b5b127634f9e42a8e41" }, "downloads": -1, "filename": "taskcluster-38.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "717213e84341e6b858780361920c5ee7", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 121186, "upload_time": "2020-10-29T23:01:03", "upload_time_iso_8601": "2020-10-29T23:01:03.177957Z", "url": "https://files.pythonhosted.org/packages/22/a7/81e9833af19ae6a290a4b520b2ff141308a11a6b8a4a4647b9e1932619cd/taskcluster-38.0.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "12d4e673f726108429d73589d50aac28", "sha256": "c91ea678679f55c575838488b4ee26ce45b032e2739a652c9b1b68eed2c6d2fa" }, "downloads": -1, "filename": "taskcluster-38.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "12d4e673f726108429d73589d50aac28", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 121187, "upload_time": "2020-10-29T23:01:05", "upload_time_iso_8601": "2020-10-29T23:01:05.173161Z", "url": "https://files.pythonhosted.org/packages/b0/23/2f4277a1fe861025f0a36d3942950c39081e722f27d7e927f742eb2ab82c/taskcluster-38.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f52a269da053c51dba2f132eff9c6102", "sha256": "f2dedb41348b9924c20bf5e7f7932f181eb9b90849cf96a03edf5379ed3de3f5" }, "downloads": -1, "filename": "taskcluster-38.0.1.tar.gz", "has_sig": false, "md5_digest": "f52a269da053c51dba2f132eff9c6102", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90314, "upload_time": "2020-10-29T23:01:06", "upload_time_iso_8601": "2020-10-29T23:01:06.644576Z", "url": "https://files.pythonhosted.org/packages/0d/62/4bdbbdcc685e0a2920257398d41ceee84968f00b2cc5e48cb7e7565984a5/taskcluster-38.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "38.0.3": [ { "comment_text": "", "digests": { "md5": "db0086c481c25e3c02d9760a89267fd5", "sha256": "c632774540c229c9d3055e0400f6fddb96154a693a79a9abb690eac5f592670e" }, "downloads": -1, "filename": "taskcluster-38.0.3-py2-none-any.whl", "has_sig": false, "md5_digest": "db0086c481c25e3c02d9760a89267fd5", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 121237, "upload_time": "2020-11-04T22:37:24", "upload_time_iso_8601": "2020-11-04T22:37:24.951255Z", "url": "https://files.pythonhosted.org/packages/ae/9b/14abe81ac2114b889c7bc6eb8e2e5ac75fbbb723b1dafed22a4ddc663d9e/taskcluster-38.0.3-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "21afad4528ca4b088fa987f10f0bf28e", "sha256": "a8c377e3e69b41749942ef57195fb0ecc5b0d4298d37d91d92742f7d8c419a4f" }, "downloads": -1, "filename": "taskcluster-38.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "21afad4528ca4b088fa987f10f0bf28e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 121237, "upload_time": "2020-11-04T22:37:26", "upload_time_iso_8601": "2020-11-04T22:37:26.497774Z", "url": "https://files.pythonhosted.org/packages/77/cd/88042bcc24809971f6f4ee77a4ecf6edf43ed16068a9759ea41f82566be8/taskcluster-38.0.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e0ed0a56d44b9ca7abe42c7e4c681573", "sha256": "643daafca62a1f767694241ebc54057a7da200573423d802f6071154500b9716" }, "downloads": -1, "filename": "taskcluster-38.0.3.tar.gz", "has_sig": false, "md5_digest": "e0ed0a56d44b9ca7abe42c7e4c681573", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90385, "upload_time": "2020-11-04T22:37:27", "upload_time_iso_8601": "2020-11-04T22:37:27.674044Z", "url": "https://files.pythonhosted.org/packages/b1/1d/a537e9d462113afdf5248c8eaee11970abbaccf3a0e49ad1992c4471ab5f/taskcluster-38.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "38.0.4": [ { "comment_text": "", "digests": { "md5": "eeee8aa36dcff8d0000171440b411499", "sha256": "d7449943315487b3069c3d1faf775e378dd56f99c36b6e55f589b730dcaa1868" }, "downloads": -1, "filename": "taskcluster-38.0.4-py2-none-any.whl", "has_sig": false, "md5_digest": "eeee8aa36dcff8d0000171440b411499", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 121239, "upload_time": "2020-11-06T19:39:42", "upload_time_iso_8601": "2020-11-06T19:39:42.504675Z", "url": "https://files.pythonhosted.org/packages/f9/e6/62c4a1d35e1f7b1429bb4c511c569c77eef5de6697647526dfd509a47553/taskcluster-38.0.4-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c4ec6c265cc49e7de4230111471c0604", "sha256": "e15a33681aefe02272b56b5aa18dc0f83156aeb92c41a28e03a3e8c9523d78d4" }, "downloads": -1, "filename": "taskcluster-38.0.4-py3-none-any.whl", "has_sig": false, "md5_digest": "c4ec6c265cc49e7de4230111471c0604", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 121239, "upload_time": "2020-11-06T19:39:44", "upload_time_iso_8601": "2020-11-06T19:39:44.037115Z", "url": "https://files.pythonhosted.org/packages/86/3a/8def4414705f007fd957fd1867f245b8b5c538f5caf8bd7f55375014dac2/taskcluster-38.0.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "cbf666e790e6033f2da7e1addda3c175", "sha256": "350916773011c4229db2fd494257edcec546e4357e76fc4c2614d82a8fa9f548" }, "downloads": -1, "filename": "taskcluster-38.0.4.tar.gz", "has_sig": false, "md5_digest": "cbf666e790e6033f2da7e1addda3c175", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90387, "upload_time": "2020-11-06T19:39:45", "upload_time_iso_8601": "2020-11-06T19:39:45.414793Z", "url": "https://files.pythonhosted.org/packages/4c/22/eba035e38eb3c3ee0da3d6253b358cfa84d7a3d7a5abc8b30ef860dd7484/taskcluster-38.0.4.tar.gz", "yanked": false, "yanked_reason": null } ], "38.0.5": [ { "comment_text": "", "digests": { "md5": "d4b30bdcfa8221f5ac70ebbcc9e85d9f", "sha256": "4471830d0f8fb94ed31a6575c3ad8a7df9694d2c15ca816cb64b88cadb0f8cde" }, "downloads": -1, "filename": "taskcluster-38.0.5-py2-none-any.whl", "has_sig": false, "md5_digest": "d4b30bdcfa8221f5ac70ebbcc9e85d9f", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 121239, "upload_time": "2020-11-12T16:18:26", "upload_time_iso_8601": "2020-11-12T16:18:26.570059Z", "url": "https://files.pythonhosted.org/packages/7f/a6/9413db83fb9049c8cb379213921122d5d420bcff55b1eef6eb77a375cdff/taskcluster-38.0.5-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "075ee63164955333c8dec46839bb5075", "sha256": "df17662beabcb1986eea2879b4ba7202b12c914e6b3dac88e519767fd8345985" }, "downloads": -1, "filename": "taskcluster-38.0.5-py3-none-any.whl", "has_sig": false, "md5_digest": "075ee63164955333c8dec46839bb5075", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 121239, "upload_time": "2020-11-12T16:18:28", "upload_time_iso_8601": "2020-11-12T16:18:28.114442Z", "url": "https://files.pythonhosted.org/packages/2e/69/a068dd7974ec3585616d3c501fe3e619a09110b7dd8e2a8d09840d9809e2/taskcluster-38.0.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d0a994e274ff0e943234172b52e6e618", "sha256": "1f969454ecf13c3465b2cdc851287b77faf1ea226d8619a745d03eca264d7766" }, "downloads": -1, "filename": "taskcluster-38.0.5.tar.gz", "has_sig": false, "md5_digest": "d0a994e274ff0e943234172b52e6e618", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90395, "upload_time": "2020-11-12T16:18:29", "upload_time_iso_8601": "2020-11-12T16:18:29.449246Z", "url": "https://files.pythonhosted.org/packages/3f/45/cf340bbdc6ba3cf775436e7f75e27418fd5f86ae4527be7e1305ebfb1287/taskcluster-38.0.5.tar.gz", "yanked": false, "yanked_reason": null } ], "38.0.6": [ { "comment_text": "", "digests": { "md5": "e65fcec1a87f96587e0dad6f72ec1170", "sha256": "4b765a12b0444c66510f5def5f6f30b1cea53785781626dd75fdd62f101e91df" }, "downloads": -1, "filename": "taskcluster-38.0.6-py2-none-any.whl", "has_sig": false, "md5_digest": "e65fcec1a87f96587e0dad6f72ec1170", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 121239, "upload_time": "2020-11-13T16:56:06", "upload_time_iso_8601": "2020-11-13T16:56:06.393745Z", "url": "https://files.pythonhosted.org/packages/fb/91/c6335d051ad460fa243e7ace019f38607364b6e618f6d711b672dd5f55a4/taskcluster-38.0.6-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "df13640947ccab8448057b802f8e0c36", "sha256": "41759b25b52b4eae87c363ae99edebd7d15c0ac5eca44eadefbae3556ed65635" }, "downloads": -1, "filename": "taskcluster-38.0.6-py3-none-any.whl", "has_sig": false, "md5_digest": "df13640947ccab8448057b802f8e0c36", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 121239, "upload_time": "2020-11-13T16:56:08", "upload_time_iso_8601": "2020-11-13T16:56:08.102195Z", "url": "https://files.pythonhosted.org/packages/b0/b5/f2308f744e207f7b13c02581a9a53c95091b4a4aa9ee3618f776f3f57466/taskcluster-38.0.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "112f7b511db03934d54db9e63574678f", "sha256": "db6d4e91fe97a03431b8ca79b98c4b41f89c42745c84fd4512cd0cb25a030de5" }, "downloads": -1, "filename": "taskcluster-38.0.6.tar.gz", "has_sig": false, "md5_digest": "112f7b511db03934d54db9e63574678f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90384, "upload_time": "2020-11-13T16:56:09", "upload_time_iso_8601": "2020-11-13T16:56:09.339077Z", "url": "https://files.pythonhosted.org/packages/47/a5/e77cf8a1011669fd014bf81139687e7a24adba55b2f0acd0210cd93cf463/taskcluster-38.0.6.tar.gz", "yanked": false, "yanked_reason": null } ], "39.0.0": [ { "comment_text": "", "digests": { "md5": "11c88c4b6ffe2f59bc9c6cb16ea77257", "sha256": "99d96cb76c2e7d75506165031aee356a72bff1397d3bc8608f191b1162a57b2b" }, "downloads": -1, "filename": "taskcluster-39.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "11c88c4b6ffe2f59bc9c6cb16ea77257", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 124363, "upload_time": "2020-12-02T21:24:47", "upload_time_iso_8601": "2020-12-02T21:24:47.344975Z", "url": "https://files.pythonhosted.org/packages/6f/c1/9f994e6c6a83af320f983c5f5b2da05cef98b0b0bb550e9a2af838d9d011/taskcluster-39.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "488ec77e6fad7189e36e63250362a2b5", "sha256": "28595089b9777896e9e7788e1470bf1de3177c1890ab0ac3ebcce666420688bc" }, "downloads": -1, "filename": "taskcluster-39.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "488ec77e6fad7189e36e63250362a2b5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 124363, "upload_time": "2020-12-02T21:24:49", "upload_time_iso_8601": "2020-12-02T21:24:49.032472Z", "url": "https://files.pythonhosted.org/packages/cb/da/fd24c6b56488c1c4f36cae753ccd5d3f93a27c94b0b1ad02bb52f9c5752b/taskcluster-39.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "162336c0f4fef7b124c95e5af6cc4c07", "sha256": "5b754dd58d0da1db256786f41ec9668b74cb6ad540ff59f10fa597d445c793d8" }, "downloads": -1, "filename": "taskcluster-39.0.0.tar.gz", "has_sig": false, "md5_digest": "162336c0f4fef7b124c95e5af6cc4c07", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92032, "upload_time": "2020-12-02T21:24:50", "upload_time_iso_8601": "2020-12-02T21:24:50.371963Z", "url": "https://files.pythonhosted.org/packages/4d/d6/b019234c94c9b11a62fdb5ff4ee055d331aa8489ba62052f82e2cabeb2a7/taskcluster-39.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "39.1.0": [ { "comment_text": "", "digests": { "md5": "b22ee401b6013a12a4631cd4d6e1c285", "sha256": "5690593ed7d31f99dee1b6288e8b47567ce676881cd0b0d92f429278e92cf1a9" }, "downloads": -1, "filename": "taskcluster-39.1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "b22ee401b6013a12a4631cd4d6e1c285", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 124367, "upload_time": "2020-12-10T19:26:15", "upload_time_iso_8601": "2020-12-10T19:26:15.580338Z", "url": "https://files.pythonhosted.org/packages/48/1e/72e3f55496b25d58db5b005f2f1a79e1947da5fb44163b0149186803d6ce/taskcluster-39.1.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a90a0a7c767c227294742213039ebb6d", "sha256": "0de13110ba26d77f2cb9565d4f882b4e8558fc23b5295c7c851ce05c345f96f2" }, "downloads": -1, "filename": "taskcluster-39.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "a90a0a7c767c227294742213039ebb6d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 124365, "upload_time": "2020-12-10T19:26:17", "upload_time_iso_8601": "2020-12-10T19:26:17.301938Z", "url": "https://files.pythonhosted.org/packages/0a/1e/bd418568c1ae2eadfcabd9ee2cc97f8fb1dc51074f7b8e97e7ea0689079b/taskcluster-39.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3dd72cf12b1dd3a04d4b4c6db3803ad0", "sha256": "8247c8d96a70e4b0818c2a206c9209e6d7ec08d9b7e39386ee45c6df7bd01146" }, "downloads": -1, "filename": "taskcluster-39.1.0.tar.gz", "has_sig": false, "md5_digest": "3dd72cf12b1dd3a04d4b4c6db3803ad0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92029, "upload_time": "2020-12-10T19:26:18", "upload_time_iso_8601": "2020-12-10T19:26:18.707905Z", "url": "https://files.pythonhosted.org/packages/04/25/4e6300c8c23b3e4be053193c646fd31ab8848146c0750b7a8db82b24dab0/taskcluster-39.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "39.1.1": [ { "comment_text": "", "digests": { "md5": "40e981ca0c5a6b83f975479fd37d199d", "sha256": "fbf05197991134fc541a4cc5676bb9eebbf409e61fa889aa38e40e38a73ab476" }, "downloads": -1, "filename": "taskcluster-39.1.1-py2-none-any.whl", "has_sig": false, "md5_digest": "40e981ca0c5a6b83f975479fd37d199d", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 124363, "upload_time": "2020-12-14T15:37:06", "upload_time_iso_8601": "2020-12-14T15:37:06.611251Z", "url": "https://files.pythonhosted.org/packages/b9/4f/83372431d3e9e323d6376baa96c7d78d3e1987562ea26afa6916aa9bfb6c/taskcluster-39.1.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "eeb4f17bf23aac7e7d0067259163b2bb", "sha256": "608631462b881118a279e1825aa5b10745d8acefb612e72c6fdb1af728bcfae3" }, "downloads": -1, "filename": "taskcluster-39.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "eeb4f17bf23aac7e7d0067259163b2bb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 124362, "upload_time": "2020-12-14T15:37:08", "upload_time_iso_8601": "2020-12-14T15:37:08.251124Z", "url": "https://files.pythonhosted.org/packages/08/6a/8ca1df60e568fb017e0094b639c242020219dd17a73161380af572547abf/taskcluster-39.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "363a917c2b4fb03edb46112d58aca076", "sha256": "66820075f6f4b6911e4df0679c460451e86e203b73a07f9ccd0780f671822628" }, "downloads": -1, "filename": "taskcluster-39.1.1.tar.gz", "has_sig": false, "md5_digest": "363a917c2b4fb03edb46112d58aca076", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92018, "upload_time": "2020-12-14T15:37:09", "upload_time_iso_8601": "2020-12-14T15:37:09.418122Z", "url": "https://files.pythonhosted.org/packages/91/39/3ee144b01ccdc4d08b83103a701b1377071bcce6a1244fd5a9bc12c15eb5/taskcluster-39.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "39.1.2": [ { "comment_text": "", "digests": { "md5": "162ed3c4f3aaaa53d334862b95c3f704", "sha256": "ec5bf0027ee98e87399c97ff62f16d9a410975ebdfea4825b6dea9db4e5767ce" }, "downloads": -1, "filename": "taskcluster-39.1.2-py2-none-any.whl", "has_sig": false, "md5_digest": "162ed3c4f3aaaa53d334862b95c3f704", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 124365, "upload_time": "2020-12-15T14:47:34", "upload_time_iso_8601": "2020-12-15T14:47:34.859520Z", "url": "https://files.pythonhosted.org/packages/b3/f0/c49c73ff83d0024874ce3f9b1a3067e9fb720b397014c25ef4b053990111/taskcluster-39.1.2-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c5fbf9b74b19cea06655fd9237ba4c9a", "sha256": "56e7847187f590e429e62ef8be37a0b371a2d3b7462f97d383c768a62e76b0b1" }, "downloads": -1, "filename": "taskcluster-39.1.2-py3-none-any.whl", "has_sig": false, "md5_digest": "c5fbf9b74b19cea06655fd9237ba4c9a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 124364, "upload_time": "2020-12-15T14:47:36", "upload_time_iso_8601": "2020-12-15T14:47:36.942742Z", "url": "https://files.pythonhosted.org/packages/c3/f3/8a294e12e47dc859cc55557388699d79058be8cde37fd0339f98b576f2f0/taskcluster-39.1.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2efcd2f2d11fb6ae33192edbc7a3ddad", "sha256": "d86fde1ef0032c796c3276f689784a0b82c2fb981969c1ea07d899e032609334" }, "downloads": -1, "filename": "taskcluster-39.1.2.tar.gz", "has_sig": false, "md5_digest": "2efcd2f2d11fb6ae33192edbc7a3ddad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92035, "upload_time": "2020-12-15T14:47:38", "upload_time_iso_8601": "2020-12-15T14:47:38.405004Z", "url": "https://files.pythonhosted.org/packages/a5/d3/ed236447f436b0fb8232ee549416f81b43b00ee26ecca0360b38b150567f/taskcluster-39.1.2.tar.gz", "yanked": false, "yanked_reason": null } ], "39.2.0": [ { "comment_text": "", "digests": { "md5": "bf8f6d1f98da942ea2b37858ecd320b0", "sha256": "844d58207f7ccba73cce2413ff79ad83ef39e4095e0269fb82ff14fa9b1c3e2f" }, "downloads": -1, "filename": "taskcluster-39.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "bf8f6d1f98da942ea2b37858ecd320b0", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 124410, "upload_time": "2020-12-18T16:47:06", "upload_time_iso_8601": "2020-12-18T16:47:06.989734Z", "url": "https://files.pythonhosted.org/packages/7b/b3/edd0f2dd12a21548bbf8b9293238a89bb5cbdf70d7ad2dea5f6be4dea469/taskcluster-39.2.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "356a2d268dd7067534725ff1e47ae1ec", "sha256": "e5fe89c1f85b3caf141106053c1e98bcb930a629889e67acb2bd9aa92bd95182" }, "downloads": -1, "filename": "taskcluster-39.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "356a2d268dd7067534725ff1e47ae1ec", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 124409, "upload_time": "2020-12-18T16:47:08", "upload_time_iso_8601": "2020-12-18T16:47:08.908051Z", "url": "https://files.pythonhosted.org/packages/a2/26/76f4c2a572ef39284e5892aa6b836f177b31fef756878381b75248114567/taskcluster-39.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ac513f47a9fad268b11b0925333a96d", "sha256": "07dec0b12c80122498d772a242f92373d65731f133fb0d9aba5c2adf78475b13" }, "downloads": -1, "filename": "taskcluster-39.2.0.tar.gz", "has_sig": false, "md5_digest": "2ac513f47a9fad268b11b0925333a96d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 92084, "upload_time": "2020-12-18T16:47:10", "upload_time_iso_8601": "2020-12-18T16:47:10.518888Z", "url": "https://files.pythonhosted.org/packages/b7/74/d5429a78d4e72370a451047b7fce7fe6057dd00e35d4021aed5d758e5f77/taskcluster-39.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.0": [ { "comment_text": "", "digests": { "md5": "ee773fb31181b8be83f9d35360e70462", "sha256": "5866b8e89905fd75e9467291ee1acfbc81c61b5eda6a45aea5ac63602291ad70" }, "downloads": -1, "filename": "taskcluster-4.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "ee773fb31181b8be83f9d35360e70462", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 116781, "upload_time": "2018-07-25T19:38:29", "upload_time_iso_8601": "2018-07-25T19:38:29.335565Z", "url": "https://files.pythonhosted.org/packages/3c/72/af281f382bc2dff13714ae2300e9f837d93099b74758681ebfe1b140fe21/taskcluster-4.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e091667ba1d7fe8bd65f4c7bb387763a", "sha256": "2574a01171704e71ab9e5b540ca176e6da44b033ba3a396856c24d11ab1e9bfc" }, "downloads": -1, "filename": "taskcluster-4.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "e091667ba1d7fe8bd65f4c7bb387763a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 116800, "upload_time": "2018-07-25T19:38:30", "upload_time_iso_8601": "2018-07-25T19:38:30.940072Z", "url": "https://files.pythonhosted.org/packages/2a/b0/d61604536a7f2773a5d707c6e21578df14d921adf2d36ef81a643a6a015e/taskcluster-4.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2b2227594834b509266856cf84a88ac5", "sha256": "1c2b36928170ddb73ada7c5548b8ae8c9604d188d9feef79cdcb67eedd9829cc" }, "downloads": -1, "filename": "taskcluster-4.0.0.tar.gz", "has_sig": false, "md5_digest": "2b2227594834b509266856cf84a88ac5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126324, "upload_time": "2018-07-25T19:38:32", "upload_time_iso_8601": "2018-07-25T19:38:32.655545Z", "url": "https://files.pythonhosted.org/packages/81/dd/10da3a486886acd046f1b96afdd88d58ddb835ee6221dba243f4dad5e182/taskcluster-4.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "7435adb55cbe729c486a8e58b2801549", "sha256": "d0360063c1a3fcaaa514bb31c03954ba573d2b671df40a2ecfdfd9339cc8e93e" }, "downloads": -1, "filename": "taskcluster-4.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "7435adb55cbe729c486a8e58b2801549", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 116581, "upload_time": "2018-08-02T10:22:39", "upload_time_iso_8601": "2018-08-02T10:22:39.039693Z", "url": "https://files.pythonhosted.org/packages/49/e7/90f6bfb978930313cf2a03b7cab38ef3c5d8f0b17d7c937d0c5d05d9e57b/taskcluster-4.0.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8310c53cbf36f12d5c463f2e5fa20e36", "sha256": "27256511044346ac71a495d3c636f2add95c102b9b09f90d6fb1ea3e9949d311" }, "downloads": -1, "filename": "taskcluster-4.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "8310c53cbf36f12d5c463f2e5fa20e36", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 116601, "upload_time": "2018-08-02T10:22:40", "upload_time_iso_8601": "2018-08-02T10:22:40.873299Z", "url": "https://files.pythonhosted.org/packages/bb/f1/af08bd30e3793e98d521a33d36a07678a56b325f019db05177ad514c88ed/taskcluster-4.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "79a58adddc2109bd9df9aece406333f8", "sha256": "99dd90bc1c566968868c8b07ede32f8e031cbccd52c7195a61e802679d461447" }, "downloads": -1, "filename": "taskcluster-4.0.1.tar.gz", "has_sig": false, "md5_digest": "79a58adddc2109bd9df9aece406333f8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126093, "upload_time": "2018-08-02T10:22:42", "upload_time_iso_8601": "2018-08-02T10:22:42.531190Z", "url": "https://files.pythonhosted.org/packages/23/4b/fca86867f22194abd63b97d72e94a8a9da91628d2b156e8c1908de677f08/taskcluster-4.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "40.0.0": [ { "comment_text": "", "digests": { "md5": "ba21bbfebf60dc7974501df1956d6875", "sha256": "83c086f0122431652d5d95192795c7047517123c058f3525bf47a6689c0f80c7" }, "downloads": -1, "filename": "taskcluster-40.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "ba21bbfebf60dc7974501df1956d6875", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 122862, "upload_time": "2021-01-06T18:58:15", "upload_time_iso_8601": "2021-01-06T18:58:15.397709Z", "url": "https://files.pythonhosted.org/packages/d3/54/0d184ad94c8493e1a6800559a1dc037ccff70f36ef9745ff77837723edd0/taskcluster-40.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f173fa2fc4536b9ab924847a7b86cc0d", "sha256": "e95632c659d827de8e491d24752313b8bdf845263e23632e7b8940c0a9053e7a" }, "downloads": -1, "filename": "taskcluster-40.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "f173fa2fc4536b9ab924847a7b86cc0d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 122861, "upload_time": "2021-01-06T18:58:16", "upload_time_iso_8601": "2021-01-06T18:58:16.970994Z", "url": "https://files.pythonhosted.org/packages/0a/6c/4a46528d93a88f8cb1ba8b0f6ec37fb926b97d503d69baf726927382d3d7/taskcluster-40.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f0a4f33e36a2503dfc91e7733dd6565a", "sha256": "b6f424a4d8d5f41d04902a49426a17709ef8fcb05b76d7084e94a739a1ba3cfb" }, "downloads": -1, "filename": "taskcluster-40.0.0.tar.gz", "has_sig": false, "md5_digest": "f0a4f33e36a2503dfc91e7733dd6565a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90417, "upload_time": "2021-01-06T18:58:18", "upload_time_iso_8601": "2021-01-06T18:58:18.184748Z", "url": "https://files.pythonhosted.org/packages/37/e0/cf7e0b05f9472a7ed4a5b396e68daa405ffb7e5d023b1464a049faaa80d0/taskcluster-40.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "40.0.3": [ { "comment_text": "", "digests": { "md5": "80ca80f8f29484d1ae5631c8da0ac3bb", "sha256": "483f1bad78f7ed975060639f9905070425bad75e3ef24e8b002ffb0ff5da7a34" }, "downloads": -1, "filename": "taskcluster-40.0.3-py2-none-any.whl", "has_sig": false, "md5_digest": "80ca80f8f29484d1ae5631c8da0ac3bb", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 122864, "upload_time": "2021-01-11T21:59:59", "upload_time_iso_8601": "2021-01-11T21:59:59.666036Z", "url": "https://files.pythonhosted.org/packages/75/7c/c94beb95084ff0f39fa8195af0f9b2f98437fef1dd8591116f9ecbe82ba9/taskcluster-40.0.3-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "07fa5df6bb30c1ea35f5b080656f651f", "sha256": "e4a322ed17ac5b7860acf30a3c39bd20138103ecb84d1829ba54017853050591" }, "downloads": -1, "filename": "taskcluster-40.0.3-py3-none-any.whl", "has_sig": false, "md5_digest": "07fa5df6bb30c1ea35f5b080656f651f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 122863, "upload_time": "2021-01-11T22:00:01", "upload_time_iso_8601": "2021-01-11T22:00:01.431663Z", "url": "https://files.pythonhosted.org/packages/28/63/88616bfaf5e4823e7bd4eb7d699cf5a503312b85ecb01bab5946d59648be/taskcluster-40.0.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8083b40b1830752539676538720cd007", "sha256": "2854253ab5c78f5802295a446bb3cf52daf59e4148d454105fd44bf14dcd1904" }, "downloads": -1, "filename": "taskcluster-40.0.3.tar.gz", "has_sig": false, "md5_digest": "8083b40b1830752539676538720cd007", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 90407, "upload_time": "2021-01-11T22:00:03", "upload_time_iso_8601": "2021-01-11T22:00:03.143023Z", "url": "https://files.pythonhosted.org/packages/27/f0/96a70e4dcb8c67d1b37984a5ab89fdbe99bc909440e2fafee850393b25b4/taskcluster-40.0.3.tar.gz", "yanked": false, "yanked_reason": null } ], "41.0.0": [ { "comment_text": "", "digests": { "md5": "8ce49093d6c32d9f3b09f5e6431c16e1", "sha256": "e8e32b91796edcc44839488fe5959c6729efca6902ef54b7e8e47c68e82e1d92" }, "downloads": -1, "filename": "taskcluster-41.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "8ce49093d6c32d9f3b09f5e6431c16e1", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 123675, "upload_time": "2021-02-10T17:32:27", "upload_time_iso_8601": "2021-02-10T17:32:27.074212Z", "url": "https://files.pythonhosted.org/packages/c6/5e/ec3701b809fdb8573a0fc43a4a27340dfae87d31c159fc6ab644b6c98d1b/taskcluster-41.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "205161f867bbff650367cadf83dcc793", "sha256": "3b426714dcfadc8f19fb0e0f6e0d9880f3c95fa63e5718244f805d5b93e245f8" }, "downloads": -1, "filename": "taskcluster-41.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "205161f867bbff650367cadf83dcc793", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 123675, "upload_time": "2021-02-10T17:32:29", "upload_time_iso_8601": "2021-02-10T17:32:29.695461Z", "url": "https://files.pythonhosted.org/packages/17/21/12bf27c28e4a1748e4db4da1771e278e6419f7b282eb66bfdbd499e6d01f/taskcluster-41.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6b84cb25d8b0160bfb3064045c15cc30", "sha256": "29693a2bff85cabc4510878e2a1316c794598fbabe8cec3413dd2509d0ea17f9" }, "downloads": -1, "filename": "taskcluster-41.0.0.tar.gz", "has_sig": false, "md5_digest": "6b84cb25d8b0160bfb3064045c15cc30", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 104947, "upload_time": "2021-02-10T17:32:31", "upload_time_iso_8601": "2021-02-10T17:32:31.383840Z", "url": "https://files.pythonhosted.org/packages/d2/42/d3ec34c248f8e7814b3dbbc6e4709646b46050005c02e3835aae76f3f36b/taskcluster-41.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "41.0.1": [ { "comment_text": "", "digests": { "md5": "23e67e8f6643ef5b57a943b916e860d5", "sha256": "bc5668e9dd51636db60de9c3e47d34eae6a3d91deb9278dced25c19beca526ae" }, "downloads": -1, "filename": "taskcluster-41.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "23e67e8f6643ef5b57a943b916e860d5", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 124030, "upload_time": "2021-02-16T20:56:17", "upload_time_iso_8601": "2021-02-16T20:56:17.477400Z", "url": "https://files.pythonhosted.org/packages/04/41/7e910fae17f5abbdc673d8656879a7ff9195234af61c4b7a9a6ea66a1325/taskcluster-41.0.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f3ff9b2daea7c9637e3e3142e4b04135", "sha256": "fec7658014e1cfc6c6d57e8f9b55e80153f439f1b84fb9b697588adf08a85dce" }, "downloads": -1, "filename": "taskcluster-41.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "f3ff9b2daea7c9637e3e3142e4b04135", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 124030, "upload_time": "2021-02-16T20:56:19", "upload_time_iso_8601": "2021-02-16T20:56:19.065971Z", "url": "https://files.pythonhosted.org/packages/bb/d3/1867c29b84c7ae4cf9e8369ac71c86ee0258ba61518847145710871e4c2b/taskcluster-41.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "90394581e9e41c239d0c84d577c79eeb", "sha256": "4c1f0ef74621a4013c5a2a6171724cf9f2d8b7c24dafe9837a5754dfcee17ae3" }, "downloads": -1, "filename": "taskcluster-41.0.1.tar.gz", "has_sig": false, "md5_digest": "90394581e9e41c239d0c84d577c79eeb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91492, "upload_time": "2021-02-16T20:56:20", "upload_time_iso_8601": "2021-02-16T20:56:20.274982Z", "url": "https://files.pythonhosted.org/packages/1a/2f/76610268f8663903c9a130dc520e692afaa772cfe88d902c42c5ce96bf0a/taskcluster-41.0.1.tar.gz", "yanked": false, "yanked_reason": null } ], "41.0.2": [ { "comment_text": "", "digests": { "md5": "71a8445b8f38ff567af7fe19e8a3b3e1", "sha256": "63be5c5030aced132d29564acb343e063fc9b74362ea32647a3d4516799d14d3" }, "downloads": -1, "filename": "taskcluster-41.0.2-py2-none-any.whl", "has_sig": false, "md5_digest": "71a8445b8f38ff567af7fe19e8a3b3e1", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 124032, "upload_time": "2021-02-17T18:59:35", "upload_time_iso_8601": "2021-02-17T18:59:35.041943Z", "url": "https://files.pythonhosted.org/packages/84/13/39fdaf91ab92a1b4be5e74e506856cfbe3150dcc77da072b48c85048b19f/taskcluster-41.0.2-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "78fbbcc017798f908e1b01d013467b8c", "sha256": "fbdb2eccfc1026ee6f79375a323ecb2c5f8ae120c3ad565d2dc101698e7e5733" }, "downloads": -1, "filename": "taskcluster-41.0.2-py3-none-any.whl", "has_sig": false, "md5_digest": "78fbbcc017798f908e1b01d013467b8c", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 124032, "upload_time": "2021-02-17T18:59:36", "upload_time_iso_8601": "2021-02-17T18:59:36.537225Z", "url": "https://files.pythonhosted.org/packages/ee/bd/a0b160d7dcf35838bfab2e3967450641c170ad307bd8b33ba64aa3e5eac4/taskcluster-41.0.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "90f86a16c298344f7fc878e6185b29b9", "sha256": "ee462b14a4b61e51ad6c8f8dd36e79bbe7fe7c062a88b795d18403aa59efdc44" }, "downloads": -1, "filename": "taskcluster-41.0.2.tar.gz", "has_sig": false, "md5_digest": "90f86a16c298344f7fc878e6185b29b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91481, "upload_time": "2021-02-17T18:59:37", "upload_time_iso_8601": "2021-02-17T18:59:37.582305Z", "url": "https://files.pythonhosted.org/packages/24/9c/ec89885f1f8deb277454542a11a1b3592bb1b499bf323b824e8cc980527f/taskcluster-41.0.2.tar.gz", "yanked": false, "yanked_reason": null } ], "41.1.0": [ { "comment_text": "", "digests": { "md5": "2524bef950ae4e0647b6dba7614e7663", "sha256": "03453305534d375ca5edd9460fe9d4a59cbd38e460de03a4b92859a84216aaac" }, "downloads": -1, "filename": "taskcluster-41.1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "2524bef950ae4e0647b6dba7614e7663", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 124032, "upload_time": "2021-02-24T17:05:58", "upload_time_iso_8601": "2021-02-24T17:05:58.808734Z", "url": "https://files.pythonhosted.org/packages/f7/90/138a35fdb0ef65f361e3ebbbcddc641dca1c956ea0855950fb356381f36d/taskcluster-41.1.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "da8d7f54f476904925afecc6b783b197", "sha256": "8d8329676d76082e50763d9d64a2a3bab29b0bc2be2d53430de1dab5e45ec28a" }, "downloads": -1, "filename": "taskcluster-41.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "da8d7f54f476904925afecc6b783b197", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 124032, "upload_time": "2021-02-24T17:06:00", "upload_time_iso_8601": "2021-02-24T17:06:00.550448Z", "url": "https://files.pythonhosted.org/packages/f3/ad/762195beebce27e7d2ec8b97372425f8f748ca9c466b7733126c08c2d9e4/taskcluster-41.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c52fc3f8e0f1450cd1e706a09d845d4a", "sha256": "4cf66e801c7e9da8fa28efb3ecb466bdcf31bc550803858f6a1174388097d87b" }, "downloads": -1, "filename": "taskcluster-41.1.0.tar.gz", "has_sig": false, "md5_digest": "c52fc3f8e0f1450cd1e706a09d845d4a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91470, "upload_time": "2021-02-24T17:06:01", "upload_time_iso_8601": "2021-02-24T17:06:01.947186Z", "url": "https://files.pythonhosted.org/packages/57/44/03e361a15fe48b0ecb20ed567bcaa46c6065bb0fc9ca40f42702f3e3e666/taskcluster-41.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "42.1.0": [ { "comment_text": "", "digests": { "md5": "b13c73fb32c80ece5a85eeaf24cfa736", "sha256": "72a08b011f943f6778de11fe6855da6027f906ae753452fe0f79eed13b7b24f6" }, "downloads": -1, "filename": "taskcluster-42.1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "b13c73fb32c80ece5a85eeaf24cfa736", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 123996, "upload_time": "2021-03-09T02:36:38", "upload_time_iso_8601": "2021-03-09T02:36:38.096118Z", "url": "https://files.pythonhosted.org/packages/f6/74/70869abfe5013e8018975821b25ea9b44447b97ae94dfd8e0007684a67de/taskcluster-42.1.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "832f7322dadd4dfc22b4d444b40767b1", "sha256": "db68d5d106d106c8273d5db49e4352fe9fc69b9d41dca261742ad17e5b57798f" }, "downloads": -1, "filename": "taskcluster-42.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "832f7322dadd4dfc22b4d444b40767b1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 123996, "upload_time": "2021-03-09T02:36:39", "upload_time_iso_8601": "2021-03-09T02:36:39.669205Z", "url": "https://files.pythonhosted.org/packages/08/71/dfc8fccb47ad416192c03fc39173a5f923332cc1ca0584323ffc48e34fa3/taskcluster-42.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a7dd0ce2a13a58adf9316d2129cbcd48", "sha256": "7feb5fae3dd69aedb5d344660962be501d72ece11779c48c78b66970534e7bec" }, "downloads": -1, "filename": "taskcluster-42.1.0.tar.gz", "has_sig": false, "md5_digest": "a7dd0ce2a13a58adf9316d2129cbcd48", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91458, "upload_time": "2021-03-09T02:36:41", "upload_time_iso_8601": "2021-03-09T02:36:41.126480Z", "url": "https://files.pythonhosted.org/packages/8e/76/9ade30a54d34bf58ad95f9f56e26dafadc3a0fef3b96dea30b1d2f0f5982/taskcluster-42.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "42.1.1": [ { "comment_text": "", "digests": { "md5": "8840c64034c519acd7f47fc4b0d803c4", "sha256": "6f8ed0e1ab2c8cfe038216572793a3611fe91de4d94f3ea3c2543c92c7111d0b" }, "downloads": -1, "filename": "taskcluster-42.1.1-py2-none-any.whl", "has_sig": false, "md5_digest": "8840c64034c519acd7f47fc4b0d803c4", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 123997, "upload_time": "2021-03-10T17:40:48", "upload_time_iso_8601": "2021-03-10T17:40:48.390779Z", "url": "https://files.pythonhosted.org/packages/45/66/aae6e6ea0fdef732f3ba28db16a8a35fb28201e7c2a740f36d630db4b6fb/taskcluster-42.1.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "325423d6268b277b8d4ac8adaa290889", "sha256": "3443ded81c3bf324fbc9910624b221c3697478c0eed41a2bc5ddb417fa18e80a" }, "downloads": -1, "filename": "taskcluster-42.1.1-py3-none-any.whl", "has_sig": false, "md5_digest": "325423d6268b277b8d4ac8adaa290889", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 123997, "upload_time": "2021-03-10T17:40:50", "upload_time_iso_8601": "2021-03-10T17:40:50.086534Z", "url": "https://files.pythonhosted.org/packages/3a/91/b2b7388ff1ddf1344d7b27a68d3a1898c9f1d83dff155a8ccff44892950a/taskcluster-42.1.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "159b6a1e208b6bc489c772331380a4ff", "sha256": "f7aadd165b738a35da739dbf7d67dcc50b9290d937176ca020de3d88a5bd6226" }, "downloads": -1, "filename": "taskcluster-42.1.1.tar.gz", "has_sig": false, "md5_digest": "159b6a1e208b6bc489c772331380a4ff", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 91434, "upload_time": "2021-03-10T17:40:51", "upload_time_iso_8601": "2021-03-10T17:40:51.511709Z", "url": "https://files.pythonhosted.org/packages/b8/6b/7da89f981507915e74c1b55a7150dec40702dc2bfb30f8d3b4fa3a09c470/taskcluster-42.1.1.tar.gz", "yanked": false, "yanked_reason": null } ], "43.0.0": [ { "comment_text": "", "digests": { "md5": "29ef4c911da9a1a706621f983a2364db", "sha256": "0ff72593158b4104c66b83dc52e9b617bd0de2b18c4bfe018e6cbda0a25165ca" }, "downloads": -1, "filename": "taskcluster-43.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "29ef4c911da9a1a706621f983a2364db", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 135363, "upload_time": "2021-04-08T15:37:12", "upload_time_iso_8601": "2021-04-08T15:37:12.534175Z", "url": "https://files.pythonhosted.org/packages/33/2b/9877e91ced86e4cb5fd2926d3b7a9bda2dfe1ae4766d536f2b1816c0e033/taskcluster-43.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4336b92710a2a6c671d31d34437e21da", "sha256": "568e990a3c368c7cb54663aa7251fd4b515474577966f67fd3625b4040ce7be7" }, "downloads": -1, "filename": "taskcluster-43.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "4336b92710a2a6c671d31d34437e21da", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 135362, "upload_time": "2021-04-08T15:37:14", "upload_time_iso_8601": "2021-04-08T15:37:14.363814Z", "url": "https://files.pythonhosted.org/packages/4a/b2/2c27e32afd83d030786c710131c0780c143d4c6fa091413ee5dbcacd7d27/taskcluster-43.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b8051c2f0e1cd0b948ddf90ab4659945", "sha256": "db1eb28047de28ea5fbb2e6246a36f69dc02fa58079132ac918f0ee6aab70ba2" }, "downloads": -1, "filename": "taskcluster-43.0.0.tar.gz", "has_sig": false, "md5_digest": "b8051c2f0e1cd0b948ddf90ab4659945", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 101980, "upload_time": "2021-04-08T15:37:15", "upload_time_iso_8601": "2021-04-08T15:37:15.730791Z", "url": "https://files.pythonhosted.org/packages/18/ad/79762c66689b672a0d69e2a504d8f13cded3ef9f5ac7b0cd85ee2bb4d6f1/taskcluster-43.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "43.1.0": [ { "comment_text": "", "digests": { "md5": "2f947368ac2dca5faf1addde7b466388", "sha256": "c47a9bc1d1f8aaae0eb5052228cad45c0681c06ed49c3b0a59d2ae34ba06fc43" }, "downloads": -1, "filename": "taskcluster-43.1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "2f947368ac2dca5faf1addde7b466388", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 134843, "upload_time": "2021-04-15T13:41:29", "upload_time_iso_8601": "2021-04-15T13:41:29.169961Z", "url": "https://files.pythonhosted.org/packages/db/88/f547be053dcd8bc520199815efb8c355c7f1361c158f5e71fc0186786a30/taskcluster-43.1.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "99057ea5ac82ee0b55f909aa092b69ab", "sha256": "18a4555a23fc0f5310de67e0075bc7f44ba477cecd3465020f5d25731644e495" }, "downloads": -1, "filename": "taskcluster-43.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "99057ea5ac82ee0b55f909aa092b69ab", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 134843, "upload_time": "2021-04-15T13:41:30", "upload_time_iso_8601": "2021-04-15T13:41:30.883256Z", "url": "https://files.pythonhosted.org/packages/85/76/44f920ac7c1f0761a0a66c0f12e28f6b724404ae2bf8c6b1e93fb5553e7b/taskcluster-43.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "94316c928f182e846edeb6e79b3444bb", "sha256": "459489fbec02549d0ff68ad44d5d8a742b05b39983dd06ea578302938fe18285" }, "downloads": -1, "filename": "taskcluster-43.1.0.tar.gz", "has_sig": false, "md5_digest": "94316c928f182e846edeb6e79b3444bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 106981, "upload_time": "2021-04-15T13:41:32", "upload_time_iso_8601": "2021-04-15T13:41:32.255479Z", "url": "https://files.pythonhosted.org/packages/bc/fc/c4cfd924f85603d53da0934c3e0348f0c4c97c87ebcb14861ede46ffe32a/taskcluster-43.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "43.2.0": [ { "comment_text": "", "digests": { "md5": "81fbeffc2235c1867f6d627e985ff954", "sha256": "be99daec779edb4abd0a3d38a9f0b1b950d35154473ba28d9e87e502e345d810" }, "downloads": -1, "filename": "taskcluster-43.2.0-py2-none-any.whl", "has_sig": false, "md5_digest": "81fbeffc2235c1867f6d627e985ff954", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 134799, "upload_time": "2021-04-28T15:03:23", "upload_time_iso_8601": "2021-04-28T15:03:23.771902Z", "url": "https://files.pythonhosted.org/packages/fe/39/f2d54f5e2991a6798964623c39e0e16fa32572874e55a940c9fc51ef2563/taskcluster-43.2.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "7acbb5a240f1e7ca77024a5337a41794", "sha256": "1325517057095332100f313cbf675ae9855e7c3034e8e726567bf032ed567722" }, "downloads": -1, "filename": "taskcluster-43.2.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7acbb5a240f1e7ca77024a5337a41794", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 134798, "upload_time": "2021-04-28T15:03:25", "upload_time_iso_8601": "2021-04-28T15:03:25.582925Z", "url": "https://files.pythonhosted.org/packages/5b/80/987bce4b3ae800b6c38758d0b4f33307ae2101d19acd75e8f506ee980636/taskcluster-43.2.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "07e6863003adb8613f3889b9c6cb81af", "sha256": "b639bed235284fdedac5d1b2d58ab1b504c80652c8da54a31b733d95c0c9c38b" }, "downloads": -1, "filename": "taskcluster-43.2.0.tar.gz", "has_sig": false, "md5_digest": "07e6863003adb8613f3889b9c6cb81af", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 106972, "upload_time": "2021-04-28T15:03:27", "upload_time_iso_8601": "2021-04-28T15:03:27.123291Z", "url": "https://files.pythonhosted.org/packages/36/fd/fbafd6515da3f22540fc52ab0e9917faf9b723d229da31f2f41010627b96/taskcluster-43.2.0.tar.gz", "yanked": false, "yanked_reason": null } ], "44.0.0": [ { "comment_text": "", "digests": { "md5": "aeb65296b586decbc9d2bc78bf3a6fd5", "sha256": "cdfec56d0d42f3e8e36159d51d88e4068f9760cee30f30b60d6c7061b75ea494" }, "downloads": -1, "filename": "taskcluster-44.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "aeb65296b586decbc9d2bc78bf3a6fd5", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 135612, "upload_time": "2021-06-01T18:22:16", "upload_time_iso_8601": "2021-06-01T18:22:16.621994Z", "url": "https://files.pythonhosted.org/packages/55/aa/5f034ba737abec0537313e3b13c5de0e7b438b8ce1eaf17482d4720db182/taskcluster-44.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dff011fc65ae99ddedaf3d160e69e17f", "sha256": "bf495f5ad40b6c58293e7c96df351712b90b65b16b69448ed16c13f9bc9ea12f" }, "downloads": -1, "filename": "taskcluster-44.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "dff011fc65ae99ddedaf3d160e69e17f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 135623, "upload_time": "2021-06-01T18:22:18", "upload_time_iso_8601": "2021-06-01T18:22:18.453182Z", "url": "https://files.pythonhosted.org/packages/31/83/bf9748dcdc44ae3596e83c01babccdd66fc992869892aa708131239e0a51/taskcluster-44.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "75f3f294615b4b76f121e4200dbd127b", "sha256": "dd2c0f36d3bce536f65a4188d9681b59a1444d0e14dcee45135694994625059b" }, "downloads": -1, "filename": "taskcluster-44.0.0.tar.gz", "has_sig": false, "md5_digest": "75f3f294615b4b76f121e4200dbd127b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 107066, "upload_time": "2021-06-01T18:22:19", "upload_time_iso_8601": "2021-06-01T18:22:19.656993Z", "url": "https://files.pythonhosted.org/packages/ce/2b/3d7364abf74fa8b69c060d3e7619c81e5df72cb43d44fa1195becb8d8c09/taskcluster-44.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "44.1.0": [ { "comment_text": "", "digests": { "md5": "2382baa52921c7cb21db48d45af9dc92", "sha256": "2d273421f3c4a165181685c017b346d153d0c97636d62c849bc8a30f2944ad3c" }, "downloads": -1, "filename": "taskcluster-44.1.0-py2-none-any.whl", "has_sig": false, "md5_digest": "2382baa52921c7cb21db48d45af9dc92", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 135612, "upload_time": "2021-07-27T18:55:33", "upload_time_iso_8601": "2021-07-27T18:55:33.133799Z", "url": "https://files.pythonhosted.org/packages/72/25/80696d879895cbe7985a4095f57edf20c11e173875b886c9e6597d1b9455/taskcluster-44.1.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "70d40c97918dc19671f149db68e996c7", "sha256": "fa3dd4a392a59c51eb164988b5f9f6fc3e23ce30b6276823c3910d39177a9af0" }, "downloads": -1, "filename": "taskcluster-44.1.0-py3-none-any.whl", "has_sig": false, "md5_digest": "70d40c97918dc19671f149db68e996c7", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 135622, "upload_time": "2021-07-27T18:55:34", "upload_time_iso_8601": "2021-07-27T18:55:34.933930Z", "url": "https://files.pythonhosted.org/packages/44/a4/7f3ef6fff322402c700d52623f9a468be0c09581408618a78bcdae74598f/taskcluster-44.1.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f48dc5f6264da81a41dcf6ec735f2528", "sha256": "a5f4a8b37fd368b1af511d8a50797a7aa10eb75dd12567897ff0a73c7dff69c5" }, "downloads": -1, "filename": "taskcluster-44.1.0.tar.gz", "has_sig": false, "md5_digest": "f48dc5f6264da81a41dcf6ec735f2528", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 107045, "upload_time": "2021-07-27T18:55:36", "upload_time_iso_8601": "2021-07-27T18:55:36.574544Z", "url": "https://files.pythonhosted.org/packages/47/57/1c2c4bab0f0169c66bebecc2d2d68328b1aed7b2a3c8750268c5d76b5807/taskcluster-44.1.0.tar.gz", "yanked": false, "yanked_reason": null } ], "44.10.0": [ { "comment_text": "", "digests": { "md5": "69197e4f295c1e1ffdad392f6837e653", "sha256": "285a5ccfee1f16bb1d6a20b244f04bc4dbbc113a60f6fa174789a8b4ceeba875" }, "downloads": -1, "filename": "taskcluster-44.10.0-py3-none-any.whl", "has_sig": false, "md5_digest": "69197e4f295c1e1ffdad392f6837e653", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 139569, "upload_time": "2022-04-11T14:32:54", "upload_time_iso_8601": "2022-04-11T14:32:54.576239Z", "url": "https://files.pythonhosted.org/packages/c2/ff/89c2f95f3960e1ecdf6fa0bcc73b8a9d60a2cfc69ab5550df2b6a2baca28/taskcluster-44.10.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e5042dbcdb62fc06566e2b75c9d2f48a", "sha256": "7c051f4ae2bb3fd8b541b3e811acbfebf15e7b0e1a81bdf95ee49fdc7fe627ac" }, "downloads": -1, "filename": "taskcluster-44.10.0.tar.gz", "has_sig": false, "md5_digest": "e5042dbcdb62fc06566e2b75c9d2f48a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115817, "upload_time": "2022-04-11T14:32:57", "upload_time_iso_8601": "2022-04-11T14:32:57.279581Z", "url": "https://files.pythonhosted.org/packages/26/d2/ec7e449edcf0657b47e417fc95a24dea7ee3cb47f9db7643f4c3b8de616a/taskcluster-44.10.0.tar.gz", "yanked": false, "yanked_reason": null } ], "44.11.0": [ { "comment_text": "", "digests": { "md5": "b86bf436cf89550b4d0fc5a390b809ef", "sha256": "70845cb8f4afe344e43c3417cc17f8e25214985eaa249730e2b6a860e439df43" }, "downloads": -1, "filename": "taskcluster-44.11.0-py3-none-any.whl", "has_sig": false, "md5_digest": "b86bf436cf89550b4d0fc5a390b809ef", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 139568, "upload_time": "2022-04-12T15:31:45", "upload_time_iso_8601": "2022-04-12T15:31:45.496575Z", "url": "https://files.pythonhosted.org/packages/17/23/64125a2c00d1a0f4ceb7e5ff7deb5b122b22768c8c02ed570779686359b3/taskcluster-44.11.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f306e1c6503cf7911bf4d228d9c6ee2e", "sha256": "573dc484f0d33835c3cca6acf91d44e0b2285a0ea3e5dcd79799bb0253a76043" }, "downloads": -1, "filename": "taskcluster-44.11.0.tar.gz", "has_sig": false, "md5_digest": "f306e1c6503cf7911bf4d228d9c6ee2e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115809, "upload_time": "2022-04-12T15:31:47", "upload_time_iso_8601": "2022-04-12T15:31:47.292021Z", "url": "https://files.pythonhosted.org/packages/7e/07/583e90bf47d5a79cc1bc4031253813dac306462c78097a8f63d0e105a10e/taskcluster-44.11.0.tar.gz", "yanked": false, "yanked_reason": null } ], "44.11.1": [ { "comment_text": "", "digests": { "md5": "93689175e803bca3860ad7d04e8915de", "sha256": "dbe1f2c8701899c4acdc87b3cbcf12296384c14f058c857019c60230b01e3c58" }, "downloads": -1, "filename": "taskcluster-44.11.1-py3-none-any.whl", "has_sig": false, "md5_digest": "93689175e803bca3860ad7d04e8915de", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 139568, "upload_time": "2022-04-12T17:59:47", "upload_time_iso_8601": "2022-04-12T17:59:47.959743Z", "url": "https://files.pythonhosted.org/packages/72/17/6cbf342e4cfd259f17cf643e20ad01c3b4e337130d5ec24442aa32d23302/taskcluster-44.11.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "e562985e6e2b29283f47096bf4ba354e", "sha256": "cf6fe79eb3ba1aabc96890c9e5a0ed6d2f22b5da0ac8af1bb330960a52fc5a21" }, "downloads": -1, "filename": "taskcluster-44.11.1.tar.gz", "has_sig": false, "md5_digest": "e562985e6e2b29283f47096bf4ba354e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115811, "upload_time": "2022-04-12T17:59:49", "upload_time_iso_8601": "2022-04-12T17:59:49.874424Z", "url": "https://files.pythonhosted.org/packages/14/c2/23fa8b70a2e68bfdd6b1f5fd1b2ad2d2e96a8c417977fe83348999820771/taskcluster-44.11.1.tar.gz", "yanked": false, "yanked_reason": null } ], "44.11.2": [ { "comment_text": "", "digests": { "md5": "5cef3f653446ecd4a18310333010f378", "sha256": "a4ecfe7996cd788b2172ef3b5148339af16725958abf951bc8ebc446c1a1425f" }, "downloads": -1, "filename": "taskcluster-44.11.2-py3-none-any.whl", "has_sig": false, "md5_digest": "5cef3f653446ecd4a18310333010f378", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 139569, "upload_time": "2022-04-19T17:53:21", "upload_time_iso_8601": "2022-04-19T17:53:21.790183Z", "url": "https://files.pythonhosted.org/packages/86/2a/e621835d3523c60283e2b10c3e107e57d14b11f1937a3490415704e9ee47/taskcluster-44.11.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "0f9fb3b2219be97702564ad276401a98", "sha256": "150aea07d79b080c3ae9dc82bc2b94881bc7f4b7a3fe90d6c596145233fcb27d" }, "downloads": -1, "filename": "taskcluster-44.11.2.tar.gz", "has_sig": false, "md5_digest": "0f9fb3b2219be97702564ad276401a98", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115826, "upload_time": "2022-04-19T17:53:23", "upload_time_iso_8601": "2022-04-19T17:53:23.873548Z", "url": "https://files.pythonhosted.org/packages/2b/23/fef3ba1fd5771c95efb2e24ef5e577a90484a632f70962313afa94bb85e3/taskcluster-44.11.2.tar.gz", "yanked": false, "yanked_reason": null } ], "44.12.1": [ { "comment_text": "", "digests": { "md5": "ea241850efd7c3a8862d54e0d7ad5cfb", "sha256": "356c5307ac515f33cbcbf310840c9d73854986750400b5b68a65bbf09c4bbe90" }, "downloads": -1, "filename": "taskcluster-44.12.1-py3-none-any.whl", "has_sig": false, "md5_digest": "ea241850efd7c3a8862d54e0d7ad5cfb", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 139566, "upload_time": "2022-04-22T18:14:38", "upload_time_iso_8601": "2022-04-22T18:14:38.314537Z", "url": "https://files.pythonhosted.org/packages/b3/9e/8f93cbf40595f93b35f408b2b0c49e99e8f979e80316cf35ea9380548a78/taskcluster-44.12.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "af81c55d9dca408c82a56c1eb24c174d", "sha256": "9323e68a8806e4eef50ebfc82d68d4adfa04ab111ce7cdf9df00db42d5a82f32" }, "downloads": -1, "filename": "taskcluster-44.12.1.tar.gz", "has_sig": false, "md5_digest": "af81c55d9dca408c82a56c1eb24c174d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115822, "upload_time": "2022-04-22T18:14:40", "upload_time_iso_8601": "2022-04-22T18:14:40.386558Z", "url": "https://files.pythonhosted.org/packages/2a/66/585b42ff45ee394b995f53c62b1c8c70cada0247ff22c7d133e58ecf8bbc/taskcluster-44.12.1.tar.gz", "yanked": false, "yanked_reason": null } ], "44.12.2": [ { "comment_text": "", "digests": { "md5": "abd5e6026f41780b212d2f2c388f6b39", "sha256": "299e0187f91c6074d8f846150ceafcc835d5b31f9ba5d825487cad7d0c36a297" }, "downloads": -1, "filename": "taskcluster-44.12.2-py3-none-any.whl", "has_sig": false, "md5_digest": "abd5e6026f41780b212d2f2c388f6b39", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 139569, "upload_time": "2022-04-25T13:18:10", "upload_time_iso_8601": "2022-04-25T13:18:10.539777Z", "url": "https://files.pythonhosted.org/packages/e3/86/cd32f408e98f1662cd0fec81fae9d7cf2c743d93a960c2dff1d4bca71c27/taskcluster-44.12.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "50c115f23e69c60d928bf83f00ce9020", "sha256": "8d5e89be2806156e011f39e238b4c21cf5819246483b1e1c475efd9743791e02" }, "downloads": -1, "filename": "taskcluster-44.12.2.tar.gz", "has_sig": false, "md5_digest": "50c115f23e69c60d928bf83f00ce9020", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115818, "upload_time": "2022-04-25T13:18:12", "upload_time_iso_8601": "2022-04-25T13:18:12.964492Z", "url": "https://files.pythonhosted.org/packages/b3/43/32d27fdf65f6d38c5df6f61eae72daeaaaaca9d1a53197733e33b7e4ab94/taskcluster-44.12.2.tar.gz", "yanked": false, "yanked_reason": null } ], "44.12.3": [ { "comment_text": "", "digests": { "md5": "0fe725e40e2a4986669dbf36b4d07f20", "sha256": "d2588ea2e6c83a72a637b10567fd9a7f519119e8833d497d76214bdedfde40f1" }, "downloads": -1, "filename": "taskcluster-44.12.3-py3-none-any.whl", "has_sig": false, "md5_digest": "0fe725e40e2a4986669dbf36b4d07f20", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 139569, "upload_time": "2022-04-25T16:15:40", "upload_time_iso_8601": "2022-04-25T16:15:40.671857Z", "url": "https://files.pythonhosted.org/packages/7c/37/dfe4ade872efddf27ccc723b2b20b2afa3568aa7b6bc56f43a6ee730f595/taskcluster-44.12.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b9e12abba352dfe506e4c6b38c36128d", "sha256": "3476bd3db988ec5c01d866d4578c48865ca123238cfd6c0ebfef1de2b3c1820d" }, "downloads": -1, "filename": "taskcluster-44.12.3.tar.gz", "has_sig": false, "md5_digest": "b9e12abba352dfe506e4c6b38c36128d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115815, "upload_time": "2022-04-25T16:15:42", "upload_time_iso_8601": "2022-04-25T16:15:42.868417Z", "url": "https://files.pythonhosted.org/packages/f8/c7/8107af31340b4db766527c8273cf4aff9cb19c22e9709f9cdbbdf825a725/taskcluster-44.12.3.tar.gz", "yanked": false, "yanked_reason": null } ], "44.13.0": [ { "comment_text": "", "digests": { "md5": "c545c7bddd0beeae5b76ce28c8f49588", "sha256": "af97ffaacd4b88be4837d7cba3a4bfc9f5ba28531f48319c11a98e0f672b2c6d" }, "downloads": -1, "filename": "taskcluster-44.13.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c545c7bddd0beeae5b76ce28c8f49588", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 139569, "upload_time": "2022-04-29T15:13:28", "upload_time_iso_8601": "2022-04-29T15:13:28.380332Z", "url": "https://files.pythonhosted.org/packages/ba/d5/513f2b7ea0004a1d74686f787ffae94b8fddf22f96b8d20e994c967a71f2/taskcluster-44.13.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "77277342f5205b4aece2277bd3ced8e5", "sha256": "36fb6c7ba6c3c418b5014c79d1e9ba047d3f43266a2b0aa3b1c52056cf1e17cf" }, "downloads": -1, "filename": "taskcluster-44.13.0.tar.gz", "has_sig": false, "md5_digest": "77277342f5205b4aece2277bd3ced8e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115831, "upload_time": "2022-04-29T15:13:30", "upload_time_iso_8601": "2022-04-29T15:13:30.563986Z", "url": "https://files.pythonhosted.org/packages/7b/1c/677685d05350191075d9f5325656cccc55b9691021cb5cef6ee3368bd69a/taskcluster-44.13.0.tar.gz", "yanked": false, "yanked_reason": null } ], "44.13.2": [ { "comment_text": "", "digests": { "md5": "c3d241a11d3109ddb7b5cb9da153ddb9", "sha256": "c2bbfbf608e4861ed5c67447fdc7f99eb9c83b491c3eba813b7075d383761084" }, "downloads": -1, "filename": "taskcluster-44.13.2-py3-none-any.whl", "has_sig": false, "md5_digest": "c3d241a11d3109ddb7b5cb9da153ddb9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 139569, "upload_time": "2022-05-03T14:43:21", "upload_time_iso_8601": "2022-05-03T14:43:21.957799Z", "url": "https://files.pythonhosted.org/packages/fe/18/f823989f6902d3fb2e35e03a0f56a077b459313c2a949aa65afd20520c44/taskcluster-44.13.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "2ff911d17eae58ab738d721cdf2a577d", "sha256": "c57647d5f190186acfcf2f02b7714ebd14df9efae8c9c04efc2ec7601a49b2a3" }, "downloads": -1, "filename": "taskcluster-44.13.2.tar.gz", "has_sig": false, "md5_digest": "2ff911d17eae58ab738d721cdf2a577d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115819, "upload_time": "2022-05-03T14:43:24", "upload_time_iso_8601": "2022-05-03T14:43:24.460506Z", "url": "https://files.pythonhosted.org/packages/a2/93/66e842b9d24b6fd26fc98a9661d8672b8ab09ba7cebf2c7d38b041c8bb04/taskcluster-44.13.2.tar.gz", "yanked": false, "yanked_reason": null } ], "44.13.3": [ { "comment_text": "", "digests": { "md5": "3c6f2a9e2a0d75d6046098de3127b002", "sha256": "c96f5b78e464e5ec247fcd78f2a885b023e9334229d0a3d22efc05e1aaeb6b30" }, "downloads": -1, "filename": "taskcluster-44.13.3-py3-none-any.whl", "has_sig": false, "md5_digest": "3c6f2a9e2a0d75d6046098de3127b002", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 139569, "upload_time": "2022-05-03T17:11:19", "upload_time_iso_8601": "2022-05-03T17:11:19.885812Z", "url": "https://files.pythonhosted.org/packages/21/76/53078dda3cf884434b79a1221a3d46e3184faa99527e8c63fe2d889b7e37/taskcluster-44.13.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "32c274dd624764cae877370f2ad75efa", "sha256": "1183d649bbffdc790a8577eb70f9208a27827b533d6e0871c570f63e3850a9d5" }, "downloads": -1, "filename": "taskcluster-44.13.3.tar.gz", "has_sig": false, "md5_digest": "32c274dd624764cae877370f2ad75efa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115827, "upload_time": "2022-05-03T17:11:21", "upload_time_iso_8601": "2022-05-03T17:11:21.928388Z", "url": "https://files.pythonhosted.org/packages/75/5d/9f746630acde46613312c030e0531571118c0f44032c6475bfa12d97b583/taskcluster-44.13.3.tar.gz", "yanked": false, "yanked_reason": null } ], "44.13.4": [ { "comment_text": "", "digests": { "md5": "64e13832be057c6d7b4b7ab5546d98f1", "sha256": "9c3fd059569118d5d8e9dc43498e312a1a9187fa49729773a2023eacd07e67b3" }, "downloads": -1, "filename": "taskcluster-44.13.4-py3-none-any.whl", "has_sig": false, "md5_digest": "64e13832be057c6d7b4b7ab5546d98f1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 139568, "upload_time": "2022-05-03T19:16:24", "upload_time_iso_8601": "2022-05-03T19:16:24.082366Z", "url": "https://files.pythonhosted.org/packages/b3/d9/cfd7320d7f38f6ad9466bf911ec7202485f337281d6733f861c0a43d7583/taskcluster-44.13.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "3da29e69d48fbdcfb2cd29d0064e0c92", "sha256": "f25919c1d92d82d5ccb5fd166076dec7e6a3a75ea6f1b828b01161f7bdbf999a" }, "downloads": -1, "filename": "taskcluster-44.13.4.tar.gz", "has_sig": false, "md5_digest": "3da29e69d48fbdcfb2cd29d0064e0c92", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115812, "upload_time": "2022-05-03T19:16:26", "upload_time_iso_8601": "2022-05-03T19:16:26.410887Z", "url": "https://files.pythonhosted.org/packages/eb/b5/062894993e37724e9bd8319b6a67c10a4c262af26649d7e60d2486bd32bd/taskcluster-44.13.4.tar.gz", "yanked": false, "yanked_reason": null } ], "44.13.5": [ { "comment_text": "", "digests": { "md5": "555c587c594278ba88c3176aa7a6ec3e", "sha256": "c0159dd1c58a99fcbc9a4f8c0a688ab0d00313cc3aa7972bf1bc9188cd3fdc06" }, "downloads": -1, "filename": "taskcluster-44.13.5-py3-none-any.whl", "has_sig": false, "md5_digest": "555c587c594278ba88c3176aa7a6ec3e", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 139568, "upload_time": "2022-05-04T15:39:08", "upload_time_iso_8601": "2022-05-04T15:39:08.440022Z", "url": "https://files.pythonhosted.org/packages/1b/9e/78a15da951669a65b11ff405e3403b570652ebcd96850d23bf903d15a689/taskcluster-44.13.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "130fcc5abc250f80312ce9527f1aebce", "sha256": "5cb4c21559dba4176c1ed6ca2719b4a7cd8e1216169e9034784cd1842a9bfd3c" }, "downloads": -1, "filename": "taskcluster-44.13.5.tar.gz", "has_sig": false, "md5_digest": "130fcc5abc250f80312ce9527f1aebce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 121905, "upload_time": "2022-05-04T15:39:10", "upload_time_iso_8601": "2022-05-04T15:39:10.715690Z", "url": "https://files.pythonhosted.org/packages/5a/14/cf9e58eeb102cd1539517108bad40e5d998e36b1c223e2c17fdae92e2792/taskcluster-44.13.5.tar.gz", "yanked": false, "yanked_reason": null } ], "44.13.6": [ { "comment_text": "", "digests": { "md5": "d8939de8943b1336b7e0c37ff0c43aca", "sha256": "4716566fe3fd7efb8a3a9033f9a8293d0885cbfd9e74624d60bfa2d9af0e1bca" }, "downloads": -1, "filename": "taskcluster-44.13.6-py3-none-any.whl", "has_sig": false, "md5_digest": "d8939de8943b1336b7e0c37ff0c43aca", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 139568, "upload_time": "2022-05-09T15:10:25", "upload_time_iso_8601": "2022-05-09T15:10:25.552170Z", "url": "https://files.pythonhosted.org/packages/b4/a5/9c9bf25770e737ef6baedb07adbe511ebbfacebc1eb57788767489a7af88/taskcluster-44.13.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f325b75ab2066b4e8e01954a37f6d2c", "sha256": "ee8a5f5b0c25fe9412f85c1e7947a5a7b6b1d71992a56e1969abc6b78758ff76" }, "downloads": -1, "filename": "taskcluster-44.13.6.tar.gz", "has_sig": false, "md5_digest": "8f325b75ab2066b4e8e01954a37f6d2c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 121910, "upload_time": "2022-05-09T15:10:27", "upload_time_iso_8601": "2022-05-09T15:10:27.428495Z", "url": "https://files.pythonhosted.org/packages/67/4e/dfe35966101ec82d036c633f41894525b8f40d5b6110e6183e284ce7d04e/taskcluster-44.13.6.tar.gz", "yanked": false, "yanked_reason": null } ], "44.2.2": [ { "comment_text": "", "digests": { "md5": "2677b3ef62b920b9b42d9ea6af6fd239", "sha256": "c1b0e82be25b1ed17e07c90b24a382634b2bfce273fdf2682d94568abe10716c" }, "downloads": -1, "filename": "taskcluster-44.2.2-py2-none-any.whl", "has_sig": false, "md5_digest": "2677b3ef62b920b9b42d9ea6af6fd239", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 135586, "upload_time": "2021-08-18T21:04:59", "upload_time_iso_8601": "2021-08-18T21:04:59.944669Z", "url": "https://files.pythonhosted.org/packages/7f/58/6f967fd357b9874192a8be39471d085ec57df46b4e71ad7f50a24c11f58b/taskcluster-44.2.2-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "62b1f108082dd5f04e04d0312c9fd005", "sha256": "846d73c597f0f47dd8525c85c8d9bc41111d5200b090690d3f16b2f57c56a2e1" }, "downloads": -1, "filename": "taskcluster-44.2.2-py3-none-any.whl", "has_sig": false, "md5_digest": "62b1f108082dd5f04e04d0312c9fd005", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 135598, "upload_time": "2021-08-18T21:05:01", "upload_time_iso_8601": "2021-08-18T21:05:01.918002Z", "url": "https://files.pythonhosted.org/packages/d9/3e/fb9c368290d391a33d6aacf5856319d314ede007814f596959807f65fc75/taskcluster-44.2.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "748b1070d6241c961e54900c5cd2f020", "sha256": "0266a6a901e1a2ec838984a7f24e7adb6d58f9f2e221a7f613388f8f23f786fc" }, "downloads": -1, "filename": "taskcluster-44.2.2.tar.gz", "has_sig": false, "md5_digest": "748b1070d6241c961e54900c5cd2f020", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 107058, "upload_time": "2021-08-18T21:05:03", "upload_time_iso_8601": "2021-08-18T21:05:03.723711Z", "url": "https://files.pythonhosted.org/packages/79/9c/467e192a6aa3843a0d13226d21be411647fc9baf1b1cf138ab8cec431086/taskcluster-44.2.2.tar.gz", "yanked": false, "yanked_reason": null } ], "44.4.0": [ { "comment_text": "", "digests": { "md5": "c2e160cc6bcbfac693bd50f5b1e47fe8", "sha256": "1f7e64aa7aa87a67d6115d1de44ca98c43ee775b63e17fd88803d5b619a752d0" }, "downloads": -1, "filename": "taskcluster-44.4.0-py3-none-any.whl", "has_sig": false, "md5_digest": "c2e160cc6bcbfac693bd50f5b1e47fe8", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 135223, "upload_time": "2022-01-19T16:54:16", "upload_time_iso_8601": "2022-01-19T16:54:16.144573Z", "url": "https://files.pythonhosted.org/packages/96/ca/ab898bdec6497a83ce1dd0a906beba7283851782ff98e011e3550576852d/taskcluster-44.4.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "332e1ed1beabcc128c5cb9d6b1efa418", "sha256": "58c1804dfda0e520dfc0d019dfc397ceacce8a8a9e07714efaa5b0fdace451ef" }, "downloads": -1, "filename": "taskcluster-44.4.0.tar.gz", "has_sig": false, "md5_digest": "332e1ed1beabcc128c5cb9d6b1efa418", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 106669, "upload_time": "2022-01-19T16:54:17", "upload_time_iso_8601": "2022-01-19T16:54:17.983146Z", "url": "https://files.pythonhosted.org/packages/c5/86/b971767fae850e3d6daa894e3f429e31f459a2159bb07e97537de28fa8e1/taskcluster-44.4.0.tar.gz", "yanked": false, "yanked_reason": null } ], "44.5.0": [ { "comment_text": "", "digests": { "md5": "5bf006b59ccd6cfd8e63cdc47e4b28d9", "sha256": "a9e708c83282b46baba8aa84bbb3bee1341c9eed28667971cc2f64bcc709b0bf" }, "downloads": -1, "filename": "taskcluster-44.5.0-py3-none-any.whl", "has_sig": false, "md5_digest": "5bf006b59ccd6cfd8e63cdc47e4b28d9", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 135224, "upload_time": "2022-02-03T14:55:01", "upload_time_iso_8601": "2022-02-03T14:55:01.487322Z", "url": "https://files.pythonhosted.org/packages/58/a4/ef2dc3b1b3501baaf942268104ee095da0150e444cb90661b7632db3ec8a/taskcluster-44.5.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "62967c56719d62b481a8e1fe299101db", "sha256": "68da08e89beaed795842125885f10f9052e3ca73d6e3785de9eeb55c46a49fa0" }, "downloads": -1, "filename": "taskcluster-44.5.0.tar.gz", "has_sig": false, "md5_digest": "62967c56719d62b481a8e1fe299101db", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 106672, "upload_time": "2022-02-03T14:55:03", "upload_time_iso_8601": "2022-02-03T14:55:03.791740Z", "url": "https://files.pythonhosted.org/packages/92/86/6260b85cad74821070dbddddd69e0246a4797cd4a2986bd92c27889fed83/taskcluster-44.5.0.tar.gz", "yanked": false, "yanked_reason": null } ], "44.6.1": [ { "comment_text": "", "digests": { "md5": "0f112af795bb73ab18aa03b9d0e9f0c2", "sha256": "51604c6ea4e641f7038e2e0d030c525f92b603577a6984065a55739b7da31f1f" }, "downloads": -1, "filename": "taskcluster-44.6.1-py3-none-any.whl", "has_sig": false, "md5_digest": "0f112af795bb73ab18aa03b9d0e9f0c2", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 135223, "upload_time": "2022-02-16T20:37:04", "upload_time_iso_8601": "2022-02-16T20:37:04.812818Z", "url": "https://files.pythonhosted.org/packages/80/ec/d83d15425947fc582ab3fb5c7b3a8fb3a5acc9556f2a5b296db9f1adfdd8/taskcluster-44.6.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a64eb1a22eb9d4790f57558bf2799e75", "sha256": "8d374b8197ba1bad68166694e87af551a822e4bfc13e88b99719194abd6c9406" }, "downloads": -1, "filename": "taskcluster-44.6.1.tar.gz", "has_sig": false, "md5_digest": "a64eb1a22eb9d4790f57558bf2799e75", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 106677, "upload_time": "2022-02-16T20:37:06", "upload_time_iso_8601": "2022-02-16T20:37:06.746939Z", "url": "https://files.pythonhosted.org/packages/d5/f4/49f8553c3d5381f3d6af4cbbf30963785ba88c9bd13adcfcda7d3dad5a33/taskcluster-44.6.1.tar.gz", "yanked": false, "yanked_reason": null } ], "44.7.0": [ { "comment_text": "", "digests": { "md5": "7dc51a4c92050cc847435a06714c33b0", "sha256": "e2e7e0d65c71d3fac9b48c84bfe7305184dfbe50c9b4799717fa5b18574ea2e7" }, "downloads": -1, "filename": "taskcluster-44.7.0-py3-none-any.whl", "has_sig": false, "md5_digest": "7dc51a4c92050cc847435a06714c33b0", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 135223, "upload_time": "2022-02-17T21:01:32", "upload_time_iso_8601": "2022-02-17T21:01:32.023991Z", "url": "https://files.pythonhosted.org/packages/e8/8a/3065b6166646f826b7a7320df8cf882f6b1047d77fe784dea7bfeddc6773/taskcluster-44.7.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "f9c06005cbd732f2cc9dd126bf96067e", "sha256": "73248027149e335a31cbfd20cbd676724870fbad7bfd1c993bf3d31a1fc6a648" }, "downloads": -1, "filename": "taskcluster-44.7.0.tar.gz", "has_sig": false, "md5_digest": "f9c06005cbd732f2cc9dd126bf96067e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 106660, "upload_time": "2022-02-17T21:01:34", "upload_time_iso_8601": "2022-02-17T21:01:34.843900Z", "url": "https://files.pythonhosted.org/packages/96/f2/44b71eef40468cf6d936cadadb18bb0de3b2f54006ad61cc4e34e07a64c7/taskcluster-44.7.0.tar.gz", "yanked": false, "yanked_reason": null } ], "44.7.1": [ { "comment_text": "", "digests": { "md5": "affba15862204fb4d3ddf2ec4894b948", "sha256": "0db540168ec0b3c8ebfe6c87a974c2265d5a0c857186712055ca5d9017185412" }, "downloads": -1, "filename": "taskcluster-44.7.1-py3-none-any.whl", "has_sig": false, "md5_digest": "affba15862204fb4d3ddf2ec4894b948", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 135221, "upload_time": "2022-02-17T22:30:48", "upload_time_iso_8601": "2022-02-17T22:30:48.491266Z", "url": "https://files.pythonhosted.org/packages/cf/e1/ce4f7462fec3d0c68b9e1e7480531ee1c8279dd2e19145f6a65eaf11a2a6/taskcluster-44.7.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b74fd2955ebf31df3468d3d355597041", "sha256": "1fa135625f4d93274b93081dac69bbce523185b36239d9e8aab3c004da8f59fc" }, "downloads": -1, "filename": "taskcluster-44.7.1.tar.gz", "has_sig": false, "md5_digest": "b74fd2955ebf31df3468d3d355597041", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 106655, "upload_time": "2022-02-17T22:30:50", "upload_time_iso_8601": "2022-02-17T22:30:50.059145Z", "url": "https://files.pythonhosted.org/packages/07/2b/958859b9952b4a691096ecd9050cde2432e1878fa8a1eeaae586438ca12f/taskcluster-44.7.1.tar.gz", "yanked": false, "yanked_reason": null } ], "44.7.2": [ { "comment_text": "", "digests": { "md5": "c24539254f8bf3c66bffa99d9dde32cd", "sha256": "0eebe8eb87fc2c026e1a3f139b42ee042f57b5143842803f807621e5c79a3bb7" }, "downloads": -1, "filename": "taskcluster-44.7.2-py3-none-any.whl", "has_sig": false, "md5_digest": "c24539254f8bf3c66bffa99d9dde32cd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 135224, "upload_time": "2022-02-25T17:02:57", "upload_time_iso_8601": "2022-02-25T17:02:57.830408Z", "url": "https://files.pythonhosted.org/packages/39/1b/3528d122f77927eb690dc93b44e7f6f3003529488314de8f8924ed602862/taskcluster-44.7.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "33c236a6e09979afa41f5785c347d236", "sha256": "15dc5cf2132b6af6542e1890c4b3ed8a609e0eba022ce64174c22145c3f565ae" }, "downloads": -1, "filename": "taskcluster-44.7.2.tar.gz", "has_sig": false, "md5_digest": "33c236a6e09979afa41f5785c347d236", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 106662, "upload_time": "2022-02-25T17:02:59", "upload_time_iso_8601": "2022-02-25T17:02:59.984254Z", "url": "https://files.pythonhosted.org/packages/e5/68/fcf904984f7f4af09f0023e1bad9eb866e34a44100dba01ff566aef7a08e/taskcluster-44.7.2.tar.gz", "yanked": false, "yanked_reason": null } ], "44.8.0": [ { "comment_text": "", "digests": { "md5": "ee7ff9a7018acacad0502458f99b8d9d", "sha256": "275c3711317f106ec775c401799da88cde29e3bed51e35bcfbda55974c3a6225" }, "downloads": -1, "filename": "taskcluster-44.8.0-py3-none-any.whl", "has_sig": false, "md5_digest": "ee7ff9a7018acacad0502458f99b8d9d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 138352, "upload_time": "2022-02-25T22:46:05", "upload_time_iso_8601": "2022-02-25T22:46:05.649446Z", "url": "https://files.pythonhosted.org/packages/1d/8e/c1b89c216e2a2f5786309051f792dd33c096c8d2aa34cedadb45227e9fe0/taskcluster-44.8.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "08402e02007d3c26915968d8c5729637", "sha256": "67324bf05b2cfb2df06d6007ecdf9e480a19667f9c78ccb6c6dfa7d13fd6b8e6" }, "downloads": -1, "filename": "taskcluster-44.8.0.tar.gz", "has_sig": false, "md5_digest": "08402e02007d3c26915968d8c5729637", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108149, "upload_time": "2022-02-25T22:46:07", "upload_time_iso_8601": "2022-02-25T22:46:07.998692Z", "url": "https://files.pythonhosted.org/packages/62/ef/d2dc2fab47c966bee1f22f1b81b4538158869c291849536826de0650ad7a/taskcluster-44.8.0.tar.gz", "yanked": false, "yanked_reason": null } ], "44.8.1": [ { "comment_text": "", "digests": { "md5": "68700f4eabcd70c2cadda0c05159e533", "sha256": "75b4c48c261561a3bc71af466aed9c913af90706eeb838b4a1ffdddbba8d815a" }, "downloads": -1, "filename": "taskcluster-44.8.1-py3-none-any.whl", "has_sig": false, "md5_digest": "68700f4eabcd70c2cadda0c05159e533", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 138349, "upload_time": "2022-03-01T22:18:40", "upload_time_iso_8601": "2022-03-01T22:18:40.461322Z", "url": "https://files.pythonhosted.org/packages/e3/44/9e0f9d022fef5efe8825c1062aa2c0a1d6a4a5fe4ae10a0059e29ba3d71e/taskcluster-44.8.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "dc72fd40184fed4530ac515bf4b2cc1b", "sha256": "a09bc697f6c9811b5afa8dd34d0bb1fd14dfe85068367ba9ccccea24b2c604b6" }, "downloads": -1, "filename": "taskcluster-44.8.1.tar.gz", "has_sig": false, "md5_digest": "dc72fd40184fed4530ac515bf4b2cc1b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108150, "upload_time": "2022-03-01T22:18:42", "upload_time_iso_8601": "2022-03-01T22:18:42.717964Z", "url": "https://files.pythonhosted.org/packages/11/0c/1d1da14b684cd77727dc7db5e68f98d5a6bd2b54a7493b356413565652be/taskcluster-44.8.1.tar.gz", "yanked": false, "yanked_reason": null } ], "44.8.2": [ { "comment_text": "", "digests": { "md5": "178d49e93529b99140ffc52b51cea607", "sha256": "827481a2cac23302d44742c54760ed22a7fa5f488959147c35cf63ec6b3365fd" }, "downloads": -1, "filename": "taskcluster-44.8.2-py3-none-any.whl", "has_sig": false, "md5_digest": "178d49e93529b99140ffc52b51cea607", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 139557, "upload_time": "2022-03-04T19:22:17", "upload_time_iso_8601": "2022-03-04T19:22:17.038871Z", "url": "https://files.pythonhosted.org/packages/8d/d7/c71d78143ff6ca85902bd486425a1ba20d96e6b5979e6ee57644cd139087/taskcluster-44.8.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "b4c9fd482cded83d644ec63113e02653", "sha256": "3237d1fa80dc7f2b081b4c8ac971de1a988933e88d73c4ae253d86ac496b8fa9" }, "downloads": -1, "filename": "taskcluster-44.8.2.tar.gz", "has_sig": false, "md5_digest": "b4c9fd482cded83d644ec63113e02653", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108909, "upload_time": "2022-03-04T19:22:19", "upload_time_iso_8601": "2022-03-04T19:22:19.235540Z", "url": "https://files.pythonhosted.org/packages/94/fe/3218111b7b92db7878de720182351fa73f6bfc9d8ef9fdab3b10d0963a7e/taskcluster-44.8.2.tar.gz", "yanked": false, "yanked_reason": null } ], "44.8.3": [ { "comment_text": "", "digests": { "md5": "7b82007cd4961e26c5fc48c398a1856a", "sha256": "82f5ff44307020d2d5ce30947f82fa62a9c5f6a96a83ea7a151fa1a64948ed74" }, "downloads": -1, "filename": "taskcluster-44.8.3-py3-none-any.whl", "has_sig": false, "md5_digest": "7b82007cd4961e26c5fc48c398a1856a", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 139558, "upload_time": "2022-03-10T20:45:55", "upload_time_iso_8601": "2022-03-10T20:45:55.317430Z", "url": "https://files.pythonhosted.org/packages/bd/2b/e1074d4277feaf0f6a1445676517bfa034a9e153d80a8f0b8ec5c7445f7c/taskcluster-44.8.3-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "473b99f4389c0ac58e5f13bd40dc3d3d", "sha256": "b7dd0cd82431af1ec0352daa5a1053134674ad9d0a9e6add47d6455abb3c7d33" }, "downloads": -1, "filename": "taskcluster-44.8.3.tar.gz", "has_sig": false, "md5_digest": "473b99f4389c0ac58e5f13bd40dc3d3d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108910, "upload_time": "2022-03-10T20:45:57", "upload_time_iso_8601": "2022-03-10T20:45:57.690539Z", "url": "https://files.pythonhosted.org/packages/e9/d1/081135e3900c85025db39e6166e1d26781ab0e59a78a6de92758f137c8b2/taskcluster-44.8.3.tar.gz", "yanked": false, "yanked_reason": null } ], "44.8.4": [ { "comment_text": "", "digests": { "md5": "6a980ad1c94a80368734972c3554ebfd", "sha256": "211c4957966eeaf0df83a41b4cb19478ca7bc9bd203698b1f53f5079894cbb2f" }, "downloads": -1, "filename": "taskcluster-44.8.4-py3-none-any.whl", "has_sig": false, "md5_digest": "6a980ad1c94a80368734972c3554ebfd", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 139557, "upload_time": "2022-03-17T21:23:58", "upload_time_iso_8601": "2022-03-17T21:23:58.024604Z", "url": "https://files.pythonhosted.org/packages/57/d5/8288d3836ddb23ea412bb30ec79d7e19e3e598f6a5676095a24850c0ea25/taskcluster-44.8.4-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "952453b89f8af27c4445a51a0cceec3d", "sha256": "cd13b1db0d27fb876e8c9e2a6d88db382a509eaa3f461e409f88e3585b3059be" }, "downloads": -1, "filename": "taskcluster-44.8.4.tar.gz", "has_sig": false, "md5_digest": "952453b89f8af27c4445a51a0cceec3d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 108895, "upload_time": "2022-03-17T21:23:59", "upload_time_iso_8601": "2022-03-17T21:23:59.936058Z", "url": "https://files.pythonhosted.org/packages/55/84/81927f667fa0e7caf0275b5d752e0736a506e15fccf94e93301f6755aa03/taskcluster-44.8.4.tar.gz", "yanked": false, "yanked_reason": null } ], "44.8.5": [ { "comment_text": "", "digests": { "md5": "6ed2aeac69131a20e142ac7b81be724d", "sha256": "16892210ddc9735dcaa5cbe0eda964d1c25ba67668cd43f6111488e37906f174" }, "downloads": -1, "filename": "taskcluster-44.8.5-py3-none-any.whl", "has_sig": false, "md5_digest": "6ed2aeac69131a20e142ac7b81be724d", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 139557, "upload_time": "2022-03-25T15:13:03", "upload_time_iso_8601": "2022-03-25T15:13:03.991648Z", "url": "https://files.pythonhosted.org/packages/2c/80/65ae3b7902595356cae71f57535b3187fd82f964e65c577817e2078b1477/taskcluster-44.8.5-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "6375dbd2aa8e88064bc64c669ea5c91a", "sha256": "5a77441e728fb9cd71364e76786094886ba4ceefa18aa9c89cfcc9e89981e43a" }, "downloads": -1, "filename": "taskcluster-44.8.5.tar.gz", "has_sig": false, "md5_digest": "6375dbd2aa8e88064bc64c669ea5c91a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115808, "upload_time": "2022-03-25T15:13:05", "upload_time_iso_8601": "2022-03-25T15:13:05.743009Z", "url": "https://files.pythonhosted.org/packages/84/1c/09daa09c706456a754c0455d9aa233ddf11c4a9227e6f7db5d545533dce0/taskcluster-44.8.5.tar.gz", "yanked": false, "yanked_reason": null } ], "44.9.0": [ { "comment_text": "", "digests": { "md5": "6c08751ceb08b2fbddcfd48a741e94c5", "sha256": "c26048529b74ef1007d7d51ca4520eb66935584b9c2918f3143192085aaf9ee5" }, "downloads": -1, "filename": "taskcluster-44.9.0-py3-none-any.whl", "has_sig": false, "md5_digest": "6c08751ceb08b2fbddcfd48a741e94c5", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 139557, "upload_time": "2022-04-04T13:40:08", "upload_time_iso_8601": "2022-04-04T13:40:08.483744Z", "url": "https://files.pythonhosted.org/packages/58/fc/8dbbbda680546bd72a3d7377bdd4244ba17afb4d3c48cdfe73b878242774/taskcluster-44.9.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "5831e6f8d05e3e6f0a8021289a374505", "sha256": "5b401605a55e7836ad11593fe20c700f2619d07748964d580121509ac1953016" }, "downloads": -1, "filename": "taskcluster-44.9.0.tar.gz", "has_sig": false, "md5_digest": "5831e6f8d05e3e6f0a8021289a374505", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115815, "upload_time": "2022-04-04T13:40:10", "upload_time_iso_8601": "2022-04-04T13:40:10.894879Z", "url": "https://files.pythonhosted.org/packages/5c/74/c0a69c9f8dda93287b38c77c857f6fd0f75373d96f5a42020e1d46fccf05/taskcluster-44.9.0.tar.gz", "yanked": false, "yanked_reason": null } ], "44.9.1": [ { "comment_text": "", "digests": { "md5": "73f40ef43b42e323a21bf6cf1b6ecff3", "sha256": "3d5184d3d47549536a67f20a1b7d8cf243c3dcf7a30b599b55bcd6e5fd26cc53" }, "downloads": -1, "filename": "taskcluster-44.9.1-py3-none-any.whl", "has_sig": false, "md5_digest": "73f40ef43b42e323a21bf6cf1b6ecff3", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 139556, "upload_time": "2022-04-04T16:35:51", "upload_time_iso_8601": "2022-04-04T16:35:51.675751Z", "url": "https://files.pythonhosted.org/packages/f4/fe/30789faad21ef97ae45b3025eac4732b3043ac398a57b0b94cb4081844c9/taskcluster-44.9.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "198e8dde9078f109d2af95a4d1f55e8f", "sha256": "e58cd6ac0388fc48413f0cd749abd2217cb32f4553281b05629a9d9ea3fddb8b" }, "downloads": -1, "filename": "taskcluster-44.9.1.tar.gz", "has_sig": false, "md5_digest": "198e8dde9078f109d2af95a4d1f55e8f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115817, "upload_time": "2022-04-04T16:35:53", "upload_time_iso_8601": "2022-04-04T16:35:53.771829Z", "url": "https://files.pythonhosted.org/packages/4b/01/c25b5f5757af6e3d363e4b94d7b92660fd7aa474bb42b78dcf0dc63bd852/taskcluster-44.9.1.tar.gz", "yanked": false, "yanked_reason": null } ], "44.9.2": [ { "comment_text": "", "digests": { "md5": "4900e3d8e82ed33c0dbc6f6d6645fa7f", "sha256": "a07fbedc67c7f0bc21609545a4bfec063eeb3a47517e27b1956da94384ffe13b" }, "downloads": -1, "filename": "taskcluster-44.9.2-py3-none-any.whl", "has_sig": false, "md5_digest": "4900e3d8e82ed33c0dbc6f6d6645fa7f", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 139557, "upload_time": "2022-04-04T18:51:14", "upload_time_iso_8601": "2022-04-04T18:51:14.181215Z", "url": "https://files.pythonhosted.org/packages/5e/ce/4e7e438a6a1edd0c9d6de115ee986835a6fb52b5c1410ba0781ad826b6f4/taskcluster-44.9.2-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "d0b8db3436fd7f491f4848173acc92ed", "sha256": "93a9489622c1c6fc36d195eb12834ec17aec2d67e874c7921c69a4abb85d945d" }, "downloads": -1, "filename": "taskcluster-44.9.2.tar.gz", "has_sig": false, "md5_digest": "d0b8db3436fd7f491f4848173acc92ed", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 115814, "upload_time": "2022-04-04T18:51:15", "upload_time_iso_8601": "2022-04-04T18:51:15.982207Z", "url": "https://files.pythonhosted.org/packages/13/e4/5834235786ebaecec753fef09aa10a287f6ff297fcfc0afcd8b7994bee7f/taskcluster-44.9.2.tar.gz", "yanked": false, "yanked_reason": null } ], "5.0.0": [ { "comment_text": "", "digests": { "md5": "6a355d38afb60714fd96a3480363d55d", "sha256": "2a71da6388211967cbd8b2af69352741edac2fd05962a8d3ec37c0d3ac9f2d66" }, "downloads": -1, "filename": "taskcluster-5.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "6a355d38afb60714fd96a3480363d55d", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 121394, "upload_time": "2018-10-04T09:36:35", "upload_time_iso_8601": "2018-10-04T09:36:35.979077Z", "url": "https://files.pythonhosted.org/packages/3b/33/b07b74bbdbb432177bdf68a0d801fc00850c8d4a09c655c6cb0dad2c5933/taskcluster-5.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a5ebc11bdc8172f8db9ddc2e42658e48", "sha256": "528e1822b465cac70e621b468562d776f5108ae65d5b4bdac4f563e610c4393e" }, "downloads": -1, "filename": "taskcluster-5.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "a5ebc11bdc8172f8db9ddc2e42658e48", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 121414, "upload_time": "2018-10-04T09:36:37", "upload_time_iso_8601": "2018-10-04T09:36:37.997384Z", "url": "https://files.pythonhosted.org/packages/47/34/a8663e818a942bfee46c399aab84771037a9e8036426eb85f59f16599c42/taskcluster-5.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "35152cc148542b1db1fbf1ffbec96533", "sha256": "ca8a70239d1bead7e097905d9e7fda9a02fc0fda4f51b41d324575097753885d" }, "downloads": -1, "filename": "taskcluster-5.0.0.tar.gz", "has_sig": false, "md5_digest": "35152cc148542b1db1fbf1ffbec96533", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126300, "upload_time": "2018-10-04T09:36:39", "upload_time_iso_8601": "2018-10-04T09:36:39.837898Z", "url": "https://files.pythonhosted.org/packages/74/9f/42ad92011c43074b3f3cb21c3e1d1bba695aa768b59113e8f63afbb64491/taskcluster-5.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "6.0.0": [ { "comment_text": "", "digests": { "md5": "6cb121ebab851b8040d5e688e9668085", "sha256": "e409fce7a72808e4f87dc7baca7a79d8b64d5c5045264b9e197c120cc40e219b" }, "downloads": -1, "filename": "taskcluster-6.0.0-py2-none-any.whl", "has_sig": false, "md5_digest": "6cb121ebab851b8040d5e688e9668085", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 121732, "upload_time": "2018-12-05T16:00:09", "upload_time_iso_8601": "2018-12-05T16:00:09.550178Z", "url": "https://files.pythonhosted.org/packages/b4/5c/bfd530914a706a5f36057396864d1e922c4931540a3b368e48846d9ee99c/taskcluster-6.0.0-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "a1a32f58817862b8518a62c2362986ef", "sha256": "6d5cf7bdbc09dc48b2d376b418b95c1c157a2d359c4b6b231c1fb14a323c0cc5" }, "downloads": -1, "filename": "taskcluster-6.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "a1a32f58817862b8518a62c2362986ef", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 121753, "upload_time": "2018-12-05T16:00:12", "upload_time_iso_8601": "2018-12-05T16:00:12.004831Z", "url": "https://files.pythonhosted.org/packages/f6/fd/c668b0a350ead66963e9ce5a0cee9c68f286aee6985b359345e7458d2ed2/taskcluster-6.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4a28afe14e9ae1ac73819985b0821476", "sha256": "48ecd4898c7928deddfb34cb1cfe2b2505c68416e6c503f8a7f3dd0572425e96" }, "downloads": -1, "filename": "taskcluster-6.0.0.tar.gz", "has_sig": false, "md5_digest": "4a28afe14e9ae1ac73819985b0821476", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127318, "upload_time": "2018-12-05T16:00:14", "upload_time_iso_8601": "2018-12-05T16:00:14.459310Z", "url": "https://files.pythonhosted.org/packages/06/6a/66bf42549bb69618159b0515c3001b9b8c21bbb5b28f16fcb14cfeef3318/taskcluster-6.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "7.0.0": [ { "comment_text": "", "digests": { "md5": "dcbcee605ca5b38997803af773487e11", "sha256": "979beeeaa9d24d99a91a05d86c81b5b2bd43defe8fe9d4a775960004bb144314" }, "downloads": -1, "filename": "taskcluster-7.0.0-py3-none-any.whl", "has_sig": false, "md5_digest": "dcbcee605ca5b38997803af773487e11", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 117885, "upload_time": "2019-03-08T19:38:05", "upload_time_iso_8601": "2019-03-08T19:38:05.418476Z", "url": "https://files.pythonhosted.org/packages/1b/ad/62597b609a16d2ea9dae40d696c344f092dbc557dfa92a9b7c0d09d120fb/taskcluster-7.0.0-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "4e1d4ce253f34936a7eabc18781d5c23", "sha256": "e8f8e311e071cd0d2f36af136003cb87b09e87fde4a4bea98467334d6f2d5590" }, "downloads": -1, "filename": "taskcluster-7.0.0.tar.gz", "has_sig": false, "md5_digest": "4e1d4ce253f34936a7eabc18781d5c23", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 126383, "upload_time": "2019-03-08T19:38:07", "upload_time_iso_8601": "2019-03-08T19:38:07.636703Z", "url": "https://files.pythonhosted.org/packages/47/75/ffba5fae55fde34812e5912ddb8c29a676c663053222da69083ad3e32af3/taskcluster-7.0.0.tar.gz", "yanked": false, "yanked_reason": null } ], "7.0.1": [ { "comment_text": "", "digests": { "md5": "59fa9c1cbd4aa47a8853bb482d79102d", "sha256": "c24a8a67db9306e5ff0fd140e5bb6489ba3dcaf0632b6a2052b2d649a30e7617" }, "downloads": -1, "filename": "taskcluster-7.0.1-py2-none-any.whl", "has_sig": false, "md5_digest": "59fa9c1cbd4aa47a8853bb482d79102d", "packagetype": "bdist_wheel", "python_version": "py2", "requires_python": null, "size": 118284, "upload_time": "2019-03-21T22:43:47", "upload_time_iso_8601": "2019-03-21T22:43:47.975917Z", "url": "https://files.pythonhosted.org/packages/56/14/8198d9e790ef1d163a90a9a997a6f16937fe99d88b066a3f01956157a23f/taskcluster-7.0.1-py2-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "c11872ee54e204c053e8f26a7e3cd6e1", "sha256": "97e19674738515e6891f4d7928280aecb2686def8b9d72a15477d7297f34c18c" }, "downloads": -1, "filename": "taskcluster-7.0.1-py3-none-any.whl", "has_sig": false, "md5_digest": "c11872ee54e204c053e8f26a7e3cd6e1", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 118300, "upload_time": "2019-03-21T22:43:50", "upload_time_iso_8601": "2019-03-21T22:43:50.032281Z", "url": "https://files.pythonhosted.org/packages/23/17/63cb2d40696737bffc71a4135332a79676ac3b5959642934213da43d3475/taskcluster-7.0.1-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "95e38e76efdc59d3758fc041a98242d8", "sha256": "93027ec6949289d8267595c5770c3d3f0902d9461d98081544dce60764f94f46" }, "downloads": -1, "filename": "taskcluster-7.0.1.tar.gz", "has_sig": false, "md5_digest": "95e38e76efdc59d3758fc041a98242d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 127115, "upload_time": "2019-03-21T22:43:52", "upload_time_iso_8601": "2019-03-21T22:43:52.031683Z", "url": "https://files.pythonhosted.org/packages/c6/a9/2a20af412902aed28c5add3b8592c17665d4649886c0edcf7abca4dcc44c/taskcluster-7.0.1.tar.gz", "yanked": false, "yanked_reason": null } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "d8939de8943b1336b7e0c37ff0c43aca", "sha256": "4716566fe3fd7efb8a3a9033f9a8293d0885cbfd9e74624d60bfa2d9af0e1bca" }, "downloads": -1, "filename": "taskcluster-44.13.6-py3-none-any.whl", "has_sig": false, "md5_digest": "d8939de8943b1336b7e0c37ff0c43aca", "packagetype": "bdist_wheel", "python_version": "py3", "requires_python": null, "size": 139568, "upload_time": "2022-05-09T15:10:25", "upload_time_iso_8601": "2022-05-09T15:10:25.552170Z", "url": "https://files.pythonhosted.org/packages/b4/a5/9c9bf25770e737ef6baedb07adbe511ebbfacebc1eb57788767489a7af88/taskcluster-44.13.6-py3-none-any.whl", "yanked": false, "yanked_reason": null }, { "comment_text": "", "digests": { "md5": "8f325b75ab2066b4e8e01954a37f6d2c", "sha256": "ee8a5f5b0c25fe9412f85c1e7947a5a7b6b1d71992a56e1969abc6b78758ff76" }, "downloads": -1, "filename": "taskcluster-44.13.6.tar.gz", "has_sig": false, "md5_digest": "8f325b75ab2066b4e8e01954a37f6d2c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 121910, "upload_time": "2022-05-09T15:10:27", "upload_time_iso_8601": "2022-05-09T15:10:27.428495Z", "url": "https://files.pythonhosted.org/packages/67/4e/dfe35966101ec82d036c633f41894525b8f40d5b6110e6183e284ce7d04e/taskcluster-44.13.6.tar.gz", "yanked": false, "yanked_reason": null } ], "vulnerabilities": [] }