Skip to content
This repository has been archived by the owner on Jul 13, 2023. It is now read-only.

Commit

Permalink
feat: update dependencies to the latest versions
Browse files Browse the repository at this point in the history
also:

* adapt to pyfcm 1.4's breaking changes:
https://github.com/olucurious/PyFCM/releases/tag/1.4.0
* move the snaek dep to requirements.in where it belongs
* remove a couple duplicates in test-requirements

Closes #1040
  • Loading branch information
pjenvey committed Oct 9, 2017
1 parent fbf9ad8 commit 564c4d8
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 33 deletions.
2 changes: 1 addition & 1 deletion autopush/tests/test_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -1807,7 +1807,7 @@ def _add_router(self):
)
self._mock_send = Mock()
fcm.fcm.send_request = self._mock_send
fcm.fcm.parse_responses = Mock(return_value=[reply])
fcm.fcm.parse_responses = Mock(return_value=reply)

@inlineCallbacks
def test_registration(self):
Expand Down
1 change: 1 addition & 0 deletions requirements.in
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ raven
requests
service-identity
simplejson
-e git+https://github.com/mitsuhiko/snaek.git@2b14b8b010a9486af0f298b4ad4c73dc1ceff9d6#egg=snaek
twisted
-e git+https://github.com/habnabit/txstatsd.git@157ef85fbdeafe23865c7c4e176237ffcb3c3f1f#egg=txStatsD-master
typing
Expand Down
59 changes: 29 additions & 30 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
-e git+https://github.com/habnabit/txstatsd.git@157ef85fbdeafe23865c7c4e176237ffcb3c3f1f#egg=txStatsD-master
-e git+https://github.com/mitsuhiko/snaek.git@2b14b8b010a9486af0f298b4ad4c73dc1ceff9d6#egg=snaek
-e git+https://github.com/habnabit/txstatsd.git@157ef85fbdeafe23865c7c4e176237ffcb3c3f1f#egg=txStatsD-master
apns==2.0.1
asn1crypto==0.22.0 # via cryptography
asn1crypto==0.23.0 # via cryptography
attrs==17.2.0
autobahn[twisted]==17.6.2
autobahn[twisted]==17.9.3
automat==0.6.0 # via twisted
boto3==1.4.4
boto3==1.4.7
boto==2.48.0
botocore==1.5.82 # via boto3, s3transfer
certifi==2017.4.17 # via requests
cffi==1.10.0 # via cryptography
botocore==1.7.25 # via boto3, s3transfer
certifi==2017.7.27.1 # via requests
cffi==1.11.2 # via cryptography
chardet==3.0.4 # via requests
click==6.7
configargparse==0.12.0
constantly==15.1.0 # via twisted
contextlib2==0.5.5 # via raven
cryptography==2.0.1
cryptography==2.0.3
cyclone==1.1
datadog==0.16.0
decorator==4.0.11 # via datadog
docutils==0.13.1 # via botocore
decorator==4.1.2 # via datadog
docutils==0.14 # via botocore
ecdsa==0.13 # via python-jose
enum34==1.1.6 # via cryptography, h2
enum34==1.1.6 # via h2
future==0.16.0 # via python-jose
futures==3.1.1 # via s3transfer
gcm-client==0.1.4
Expand All @@ -30,33 +30,32 @@ h2==2.6.2 # via hyper
hpack==3.0.0 # via h2
hyper==0.7.0
hyperframe==3.2.0 # via h2, hyper
hyperlink==17.2.1 # via twisted
idna==2.5 # via cryptography, requests
hyperlink==17.3.1 # via twisted
idna==2.6 # via cryptography, requests
incremental==17.5.0 # via twisted
ipaddress==1.0.18 # via cryptography
jmespath==0.9.3 # via boto3, botocore
marshmallow-polyfield==3.1
marshmallow==2.13.5
marshmallow==2.13.6
objgraph==3.1.0
pyasn1-modules==0.0.9 # via service-identity
pyasn1==0.2.3
pycparser==2.17 # via cffi
pyasn1-modules==0.1.4 # via service-identity
pyasn1==0.3.7
pycparser==2.18 # via cffi
pycrypto==2.6.1 # via python-jose
pyfcm==1.3.1
pyopenssl==17.1.0
pyfcm==1.4.2
pyopenssl==17.3.0
python-dateutil==2.6.1 # via botocore
python-jose==1.3.2
raven==6.1.0
python-jose==1.4.0
raven==6.2.1
requests-toolbelt==0.8.0 # via pyfcm
requests==2.18.1
s3transfer==0.1.10 # via boto3
requests==2.18.4
s3transfer==0.1.11 # via boto3
service-identity==17.0.0
simplejson==3.11.1
six==1.10.0 # via autobahn, automat, cryptography, pyopenssl, python-dateutil, python-jose, txaio
twisted==17.5.0
txaio==2.8.0 # via autobahn
typing==3.6.1
six==1.11.0 # via autobahn, automat, cryptography, pyopenssl, python-dateutil, python-jose, txaio
twisted==17.9.0
txaio==2.8.2 # via autobahn
typing==3.6.2
ua-parser==0.7.3
urllib3==1.21.1 # via requests
urllib3==1.22 # via requests
wsaccel==0.6.2 ; platform_python_implementation == "CPython"
zope.interface==4.4.2
zope.interface==4.4.3
2 changes: 0 additions & 2 deletions test-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,5 @@ mock>=1.0.1
nose
pbr==1.10.0
psutil
pycrypto==2.6.1
pympler==0.5
python-jose==1.3.2
websocket-client

0 comments on commit 564c4d8

Please sign in to comment.