├── .coveragerc ├── .editorconfig ├── .gitignore ├── .pyup.yml ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── demo.gif ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── readme.rst ├── release.rst └── usage.rst ├── pyup ├── __init__.py ├── bot.py ├── cli.py ├── config.py ├── errors.py ├── package.py ├── providers │ ├── __init__.py │ ├── github.py │ └── gitlab.py ├── pullrequest.py ├── requirements.py ├── settings.py ├── templates │ ├── _api_key.md │ ├── _bundled_updates.md │ ├── _changelog.md │ ├── initial_update_body.md │ ├── scheduled_update_body.md │ └── sequential_update_body.md └── updates.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── data │ ├── django-devpi.json │ ├── django.json │ ├── hashed_reqs.txt │ └── pyup-changelog.json ├── test_bot.py ├── test_config.py ├── test_github.py ├── test_gitlab.py ├── test_package.py ├── test_pullrequest.py ├── test_pyup.py ├── test_requirements.py └── test_updates.py ├── tox.ini └── travis_pypi_setup.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/.gitignore -------------------------------------------------------------------------------- /.pyup.yml: -------------------------------------------------------------------------------- 1 | update: "insecure" 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/README.rst -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/demo.gif -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/release.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/docs/release.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /pyup/__init__.py: -------------------------------------------------------------------------------- 1 | __version__ = '1.1.3-dev' 2 | -------------------------------------------------------------------------------- /pyup/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/pyup/bot.py -------------------------------------------------------------------------------- /pyup/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/pyup/cli.py -------------------------------------------------------------------------------- /pyup/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/pyup/config.py -------------------------------------------------------------------------------- /pyup/errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/pyup/errors.py -------------------------------------------------------------------------------- /pyup/package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/pyup/package.py -------------------------------------------------------------------------------- /pyup/providers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pyup/providers/github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/pyup/providers/github.py -------------------------------------------------------------------------------- /pyup/providers/gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/pyup/providers/gitlab.py -------------------------------------------------------------------------------- /pyup/pullrequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/pyup/pullrequest.py -------------------------------------------------------------------------------- /pyup/requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/pyup/requirements.py -------------------------------------------------------------------------------- /pyup/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/pyup/settings.py -------------------------------------------------------------------------------- /pyup/templates/_api_key.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/pyup/templates/_api_key.md -------------------------------------------------------------------------------- /pyup/templates/_bundled_updates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/pyup/templates/_bundled_updates.md -------------------------------------------------------------------------------- /pyup/templates/_changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/pyup/templates/_changelog.md -------------------------------------------------------------------------------- /pyup/templates/initial_update_body.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/pyup/templates/initial_update_body.md -------------------------------------------------------------------------------- /pyup/templates/scheduled_update_body.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/pyup/templates/scheduled_update_body.md -------------------------------------------------------------------------------- /pyup/templates/sequential_update_body.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/pyup/templates/sequential_update_body.md -------------------------------------------------------------------------------- /pyup/updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/pyup/updates.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | 4 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/django-devpi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/tests/data/django-devpi.json -------------------------------------------------------------------------------- /tests/data/django.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/tests/data/django.json -------------------------------------------------------------------------------- /tests/data/hashed_reqs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/tests/data/hashed_reqs.txt -------------------------------------------------------------------------------- /tests/data/pyup-changelog.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/tests/data/pyup-changelog.json -------------------------------------------------------------------------------- /tests/test_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/tests/test_bot.py -------------------------------------------------------------------------------- /tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/tests/test_config.py -------------------------------------------------------------------------------- /tests/test_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/tests/test_github.py -------------------------------------------------------------------------------- /tests/test_gitlab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/tests/test_gitlab.py -------------------------------------------------------------------------------- /tests/test_package.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/tests/test_package.py -------------------------------------------------------------------------------- /tests/test_pullrequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/tests/test_pullrequest.py -------------------------------------------------------------------------------- /tests/test_pyup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/tests/test_pyup.py -------------------------------------------------------------------------------- /tests/test_requirements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/tests/test_requirements.py -------------------------------------------------------------------------------- /tests/test_updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/tests/test_updates.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/tox.ini -------------------------------------------------------------------------------- /travis_pypi_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyupio/pyup/HEAD/travis_pypi_setup.py --------------------------------------------------------------------------------