aboutsummaryrefslogtreecommitdiff
path: root/Pipfile.lock
diff options
context:
space:
mode:
authorashnitman <alex.shnitman@cyberark.com>2021-01-03 16:27:49 +0200
committerashnitman <alex.shnitman@cyberark.com>2021-01-03 16:27:49 +0200
commit8e93c01c54c99dc172047e9bdd7a848cf94830c5 (patch)
tree1690ca2b53d025aabe9d85217aad76a084e08b8c /Pipfile.lock
parentfix manual install instructions in README (closes #8) (diff)
downloadmetube-8e93c01c54c99dc172047e9bdd7a848cf94830c5.tar.gz
metube-8e93c01c54c99dc172047e9bdd7a848cf94830c5.tar.bz2
metube-8e93c01c54c99dc172047e9bdd7a848cf94830c5.zip
fix python-socketio version to 4.x so that ngx-socket-io continues to work (closes #9)
Diffstat (limited to 'Pipfile.lock')
-rw-r--r--Pipfile.lock30
1 files changed, 15 insertions, 15 deletions
diff --git a/Pipfile.lock b/Pipfile.lock
index 3424d8e..769ac9f 100644
--- a/Pipfile.lock
+++ b/Pipfile.lock
@@ -1,7 +1,7 @@
{
"_meta": {
"hash": {
- "sha256": "1db79fec9ce3cc12fdac794c2d8e73bbc6d3ccfe3a7f120cc15bb13b34e81b1f"
+ "sha256": "3dd00449a36ed996966c79bddda7d4e1f7ec2e35e58a9d460c687ddf0d10ba5b"
},
"pipfile-spec": 6,
"requires": {
@@ -75,14 +75,6 @@
"markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
"version": "==20.3.0"
},
- "bidict": {
- "hashes": [
- "sha256:4fa46f7ff96dc244abfc437383d987404ae861df797e2fd5b190e233c302be09",
- "sha256:929d056e8d0d9b17ceda20ba5b24ac388e2a4d39802b87f9f4d3f45ecba070bf"
- ],
- "markers": "python_version >= '3.6'",
- "version": "==0.21.2"
- },
"chardet": {
"hashes": [
"sha256:84ab92ed1c4d4f16916e05906b6b75a6c0fb5db821cc65e70cbd64a3e2a5eaae",
@@ -143,18 +135,26 @@
},
"python-engineio": {
"hashes": [
- "sha256:33f7a214be5db35c867e97027bfe63676cb003d82aa17a607612b25ba5d84e5b",
- "sha256:9f34afa4170f5ba6e3d9ff158752ccf8fbb2145f16554b2f0fc84646675be99a"
+ "sha256:5a9e6086d192463b04a1428ff1f85b6ba631bbb19d453b144ffc04f530542b84",
+ "sha256:eab4553f2804c1ce97054c8b22cf0d5a9ab23128075248b97e1a5b2f29553085"
],
- "version": "==4.0.0"
+ "version": "==3.14.2"
},
"python-socketio": {
"hashes": [
- "sha256:870f8b00a63ef7c9a1f85fd70028624867bf246115e82625f28ef79def8847bb",
- "sha256:f53fd0d5bd9f75a70492062f4ae6195ab5d34d67a29024d740f25e468392893e"
+ "sha256:5a21da53fdbdc6bb6c8071f40e13d100e0b279ad997681c2492478e06f370523",
+ "sha256:cd1f5aa492c1eb2be77838e837a495f117e17f686029ebc03d62c09e33f4fa10"
],
"index": "pypi",
- "version": "==5.0.4"
+ "version": "==4.6.1"
+ },
+ "six": {
+ "hashes": [
+ "sha256:30639c035cdb23534cd4aa2dd52c3bf48f06e5f4a941509c8bafd8ce11080259",
+ "sha256:8b74bedcbbbaca38ff6d7491d76f2b06b3592611af620f8426e82dddb04a5ced"
+ ],
+ "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3'",
+ "version": "==1.15.0"
},
"typing-extensions": {
"hashes": [
bgstack15