Update dependencies

This commit is contained in:
Saptak S 2020-03-21 12:45:43 +05:30
parent 9dfae675ea
commit 28948b1e18
3 changed files with 567 additions and 179 deletions

View File

@ -259,6 +259,7 @@ This section documents the release process. Unless you're a core OnionShare deve
Before making a release, all of these should be complete: Before making a release, all of these should be complete:
* `share/version.txt` should have the correct version * `share/version.txt` should have the correct version
* `pyproject.toml` should have the correct version
* `install/onionshare.nsi` should have the correct version, for the Windows installer * `install/onionshare.nsi` should have the correct version, for the Windows installer
* `CHANGELOG.md` should be updated to include a list of all major changes since the last release * `CHANGELOG.md` should be updated to include a list of all major changes since the last release
* There must be a PGP-signed git tag for the version, e.g. for OnionShare 2.1, the tag must be `v2.1` * There must be a PGP-signed git tag for the version, e.g. for OnionShare 2.1, the tag must be `v2.1`

671
poetry.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -2,48 +2,48 @@
name = "onionshare" name = "onionshare"
version = "2.2" version = "2.2"
description = "OnionShare lets you securely and anonymously send and receive files. It works by starting a web server, making it accessible as a Tor onion service, and generating an unguessable web address so others can download files from you, or upload files to you. It does _not_ require setting up a separate server or using a third party file-sharing service." description = "OnionShare lets you securely and anonymously send and receive files. It works by starting a web server, making it accessible as a Tor onion service, and generating an unguessable web address so others can download files from you, or upload files to you. It does _not_ require setting up a separate server or using a third party file-sharing service."
authors = ["Micah Lee <micah.lee@theintercept.com>"] authors = ["Micah Lee <micah@micahflee.com>"]
license = "GPLv3+" license = "GPLv3+"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.7" python = "*"
altgraph = "0.16.1" altgraph = "*"
certifi = "2019.9.11" certifi = "*"
chardet = "3.0.4" chardet = "*"
Click = "7.0" Click = "*"
Flask = "1.1.1" Flask = "*"
Flask-HTTPAuth = "3.3.0" Flask-HTTPAuth = "*"
future = "0.17.1" future = "*"
idna = "2.8" idna = "*"
itsdangerous = "1.1.0" itsdangerous = "*"
Jinja2 = "2.10.1" Jinja2 = "*"
macholib = "1.11" macholib = "*"
MarkupSafe = "1.1.1" MarkupSafe = "*"
pefile = "2019.4.18" pefile = "*"
pycryptodome = "3.9.0" pycryptodome = "*"
PyQt5 = "5.13.1" PyQt5 = "*"
PyQt5-sip = "4.19.19" PyQt5-sip = "*"
PySocks = "1.7.0" PySocks = "*"
requests = "2.22.0" requests = "*"
stem = "1.7.1" stem = "*"
urllib3 = "1.25.3" urllib3 = "*"
Werkzeug = "0.15.6" Werkzeug = "*"
watchdog = "0.9.0" watchdog = "*"
psutil = "5.6.7" psutil = "*"
[tool.poetry.dev-dependencies] [tool.poetry.dev-dependencies]
atomicwrites = "1.3.0" atomicwrites = "*"
attrs = "19.1.0" attrs = "*"
more-itertools = "7.2.0" more-itertools = "*"
pluggy = "0.13.0" pluggy = "*"
py = "1.8.0" py = "*"
pytest = "5.1.2" pytest = "*"
pytest-faulthandler = "2.0.1" pytest-faulthandler = "*"
pytest-qt = "3.2.2" pytest-qt = "*"
six = "1.12.0" six = "*"
urllib3 = "1.25.3" urllib3 = "*"
pyinstaller = {version = "^3.6", platform = "darwin"} pyinstaller = {version = "*", platform = "darwin"}
setuptools = {version = "^45.2.0", platform = "windows"} setuptools = {version = "*", platform = "windows"}
[build-system] [build-system]
requires = ["poetry>=0.12"] requires = ["poetry>=0.12"]