Update dependencies

This commit is contained in:
Saptak S 2020-03-21 12:45:43 +05:30
parent d4de02f180
commit b2ad686648
No known key found for this signature in database
GPG key ID: 2D9B32E54C68A3FB
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:
* `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
* `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`

671
poetry.lock generated

File diff suppressed because it is too large Load diff

View file

@ -2,48 +2,48 @@
name = "onionshare"
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."
authors = ["Micah Lee <micah.lee@theintercept.com>"]
authors = ["Micah Lee <micah@micahflee.com>"]
license = "GPLv3+"
[tool.poetry.dependencies]
python = "^3.7"
altgraph = "0.16.1"
certifi = "2019.9.11"
chardet = "3.0.4"
Click = "7.0"
Flask = "1.1.1"
Flask-HTTPAuth = "3.3.0"
future = "0.17.1"
idna = "2.8"
itsdangerous = "1.1.0"
Jinja2 = "2.10.1"
macholib = "1.11"
MarkupSafe = "1.1.1"
pefile = "2019.4.18"
pycryptodome = "3.9.0"
PyQt5 = "5.13.1"
PyQt5-sip = "4.19.19"
PySocks = "1.7.0"
requests = "2.22.0"
stem = "1.7.1"
urllib3 = "1.25.3"
Werkzeug = "0.15.6"
watchdog = "0.9.0"
psutil = "5.6.7"
python = "*"
altgraph = "*"
certifi = "*"
chardet = "*"
Click = "*"
Flask = "*"
Flask-HTTPAuth = "*"
future = "*"
idna = "*"
itsdangerous = "*"
Jinja2 = "*"
macholib = "*"
MarkupSafe = "*"
pefile = "*"
pycryptodome = "*"
PyQt5 = "*"
PyQt5-sip = "*"
PySocks = "*"
requests = "*"
stem = "*"
urllib3 = "*"
Werkzeug = "*"
watchdog = "*"
psutil = "*"
[tool.poetry.dev-dependencies]
atomicwrites = "1.3.0"
attrs = "19.1.0"
more-itertools = "7.2.0"
pluggy = "0.13.0"
py = "1.8.0"
pytest = "5.1.2"
pytest-faulthandler = "2.0.1"
pytest-qt = "3.2.2"
six = "1.12.0"
urllib3 = "1.25.3"
pyinstaller = {version = "^3.6", platform = "darwin"}
setuptools = {version = "^45.2.0", platform = "windows"}
atomicwrites = "*"
attrs = "*"
more-itertools = "*"
pluggy = "*"
py = "*"
pytest = "*"
pytest-faulthandler = "*"
pytest-qt = "*"
six = "*"
urllib3 = "*"
pyinstaller = {version = "*", platform = "darwin"}
setuptools = {version = "*", platform = "windows"}
[build-system]
requires = ["poetry>=0.12"]