zulip/requirements
Shoumorup e8ba08367b requirements: Upgrade pyflakes.
Pyflakes has been upgraded from 2.0.0 to 2.1.0 and
a few new linter errors have been fixed.

Fixes #11397.
2019-02-01 07:26:13 -08:00
..
README.md requirements: Improve README's format. 2018-05-26 06:26:14 -07:00
common.in requirements: Upgrade pika from 0.12.0 to 0.13.0. 2019-01-31 10:04:07 -08:00
dev.in requirements: Upgrade pyflakes. 2019-02-01 07:26:13 -08:00
dev.txt requirements: Upgrade pyflakes. 2019-02-01 07:26:13 -08:00
docs.in requirements: Upgrade Sphinx to 1.8.3. 2019-01-07 10:30:49 -08:00
docs.txt requirements: Upgrade argon2-cffi from 18.3.0 to 19.1.0. 2019-01-30 09:50:33 -08:00
mypy.in dependencies: Upgrade mypy to version 0.650. 2018-12-09 22:20:12 -08:00
mypy.txt dependencies: Upgrade mypy to version 0.650. 2018-12-09 22:20:12 -08:00
pip.txt requirements: Upgrade setuptools from 40.6.3 to 40.7.1. 2019-01-30 09:50:43 -08:00
prod.in requirements: Upgrade uWSGI to 2.0.17.1. 2018-07-31 11:13:22 -07:00
prod.txt requirements: Upgrade pika from 0.12.0 to 0.13.0. 2019-01-31 10:04:07 -08:00
thumbor.in thumbor requirements: Upgrade virtualenv-clone from 0.4.0 to 0.5.1. 2019-01-30 09:50:43 -08:00
thumbor.txt thumbor requirements: Upgrade virtualenv-clone from 0.4.0 to 0.5.1. 2019-01-30 09:50:43 -08:00
unupgradable.json requirements: Fix JSON syntax in unupgradables.json. 2019-01-30 07:30:31 +00:00

README.md

The dependency graph of the requirements is as follows:

dev         prod
+ +          +
| +->common<-+
v
mypy,docs

Of the files, only dev, prod, and mypy have been used in the install scripts directly. The rest are implicit dependencies.

common and dev are locked.

Steps to update a lock file, e.g. to update ipython from 5.3.0 to 6.0.0 in common.in and propagate it to dev.txt and prod.txt: 0. Replace ipython==5.4.1 with ipython==6.0.0 in common.in.

  1. Run ./tools/update-locked-requirements.
  2. Increase PROVISION_VERSION in version.py.
  3. Run ./tools/provision to install the new deps and test them.
  4. Commit your changes.