{"id":13617386,"url":"https://github.com/pyupio/pyup","last_synced_at":"2025-05-16T18:08:38.981Z","repository":{"id":43675967,"uuid":"47748084","full_name":"pyupio/pyup","owner":"pyupio","description":"A tool to update your project's dependencies on GitHub. Runs on pyup.io, comes with a command line interface.","archived":false,"fork":false,"pushed_at":"2021-06-24T12:08:51.000Z","size":536,"stargazers_count":463,"open_issues_count":74,"forks_count":66,"subscribers_count":22,"default_branch":"master","last_synced_at":"2025-05-12T19:02:07.671Z","etag":null,"topics":["dependency","dependency-manager","security","security-tools","security-vulnerability"],"latest_commit_sha":null,"homepage":"https://pyup.io","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/pyupio.png","metadata":{"files":{"readme":"README.rst","changelog":"HISTORY.rst","contributing":"CONTRIBUTING.rst","funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2015-12-10T08:25:18.000Z","updated_at":"2025-05-01T11:08:14.000Z","dependencies_parsed_at":"2022-09-02T18:00:22.557Z","dependency_job_id":null,"html_url":"https://github.com/pyupio/pyup","commit_stats":null,"previous_names":[],"tags_count":23,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyupio%2Fpyup","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyupio%2Fpyup/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyupio%2Fpyup/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/pyupio%2Fpyup/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/pyupio","download_url":"https://codeload.github.com/pyupio/pyup/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254582907,"owners_count":22095518,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dependency","dependency-manager","security","security-tools","security-vulnerability"],"created_at":"2024-08-01T20:01:40.961Z","updated_at":"2025-05-16T18:08:38.941Z","avatar_url":"https://github.com/pyupio.png","language":"Python","readme":".. image:: https://pyup.io/static/images/logo.png\n        :target: https://pyup.io\n\n|\n\n.. image:: https://pyup.io/repos/github/pyupio/pyup/shield.svg\n     :target: https://pyup.io/repos/github/pyupio/pyup/\n     :alt: Updates\n\n.. image:: https://travis-ci.org/pyupio/pyup.svg?branch=master\n        :target: https://travis-ci.org/pyupio/pyup\n\n.. image:: https://readthedocs.org/projects/pyup/badge/?version=latest\n        :target: https://readthedocs.org/projects/pyup/?badge=latest\n        :alt: Documentation Status\n\n\n.. image:: https://codecov.io/github/pyupio/pyup/coverage.svg?branch=master\n        :target: https://codecov.io/github/pyupio/pyup?branch=master\n\nA tool that updates all your project's Python dependency files through Pull Requests on GitHub/GitLab.\n\n.. image:: https://github.com/pyupio/pyup/raw/master/demo.gif\n\nAbout\n-----\n\nThis repo contains the bot that is running at pyup.io. You can install it locally and run the bot through the command line interface.\n\nDocumentation: https://pyup.io/docs/\n\nInstallation\n------------\n\nTo install pyup, run::\n\n    $ pip install pyupio\n\nIf you want to update Pipfiles, install the optional pipenv extra:\n\n    $ pip install dparse[pipenv]\n\nObtain Token\n------------\n\nIn order to communicate with the github API, you need to create an oauth token for your account:\n\n* Log in to your github account\n* Click on settings -\u003e Personal access tokens\n* Click on Generate new token\n* Make sure to check `repo` and `email` and click on Generate token\n\nRun your first Update\n---------------------\n\nRun::\n\n    $ pyup --repo=username/repo --user-token=\u003cYOUR_TOKEN\u003e --initial\n\n\nThis will check all your requirement files and search for new package versions. If there are\nupdates available, pyup will create a new branch on your repository and create a new commit for\nevery single update. Once all files are up to date, pyup will create a single pull request containing\nall commits.\n\nOnce your repository is up to date and the initial update is merged in, remove the `--initial`\nflag and run::\n\n    $ pyup --repo=username/repo --user-token=\u003cYOUR_TOKEN\u003e\n\nThis will create a new branch and a pull request for every single update. Run a cronjob or a scheduled task somewhere\nthat auto-updates your repository once in a while (e.g. every day) to stay on latest.\n\n\nPyup also has experimental support for Gitlab.  Generate a personal access token\nfrom your profile settings (eg. https://gitlab.com/profile/personal_access_tokens),\nthen run pyup from the cli::\n\n    # gitlab.com:\n    $ pyup --provider gitlab --repo=username/repo --user-token=\u003cYOUR_TOKEN\u003e\n\nCustom Gitlab instance and GitHub Enterprise support\n----------------------------------------------------\n\nPyup offer support for custom Gitlab instances and GitHub Enterprise via the provider_url option::\n\n    $ pyup --provider github --provider_url https://github.enterprise/api/v3 --repo=username/repo --user-token=\u003cYOUR_TOKEN\u003e\n    $ pyup --provider gitlab --provider_url https://your.gitlab/ --repo=username/repo --user-token=\u003cYOUR_TOKEN\u003e\n\n    # The alternative method to add a custom gitlab instance is still valid :\n    $ pyup --provider gitlab --repo=username/repo --user-token=\u003cYOUR_TOKEN\u003e@https://your.gitlab/\n\n\nDisable verification of SSL certificate::\n\n    $ pyup --provider github --provider_url https://github.enterprise/api/v3 --repo=username/repo --user-token=\u003cYOUR_TOKEN\u003e --ignore_ssl\n    $ pyup --provider gitlab --repo=username/repo --user-token=\u003cYOUR_TOKEN\u003e@https://your.gitlab/ --ignore_ssl\n\nPython 2.7\n----------\n\nThis tool requires latest Python patch versions starting with version 3.5. We\ndid support Python 2.7 in the past but, as for other Python 3.x minor versions,\nit reached its End-Of-Life and as such we are not able to support it anymore.\n\nWe understand you might still have Python 2.7 projects running. At the same\ntime, PyUp itself has a commitment to encourage developers to keep their\nsoftware up-to-date, and it would not make sense for us to work with officially\nunsupported Python versions, or even those that reached their end of life.\n\nIf you still need to run PyUp from a Python 2.7 environment, please use\nversion 1.0.2 available at PyPi. Alternatively, you can run PyUp from a\nPython 3 environment to check the requirements file for your Python 2.7\nproject.\n","funding_links":[],"categories":["Python"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpyupio%2Fpyup","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpyupio%2Fpyup","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpyupio%2Fpyup/lists"}