1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-15 00:03:28 +01:00

setup: remove pyamf as default dep for now

This commit is contained in:
Ilya Kreymer 2016-12-21 17:15:41 -08:00
parent 3b82416ad3
commit 0e414acfda
2 changed files with 6 additions and 3 deletions

View File

@ -278,8 +278,11 @@ __wbvidrw = (function() {
if (player) {
_pywb_yt_err = function() {
do_yt_video_replace(player_div);
console.log("yt onError");
console.log(arguments);
//do_yt_video_replace(player_div);
}
player.addEventListener("onStateChange", function() { console.log("yt stateChange"); });
player.addEventListener("onError", "_pywb_yt_err");
}

View File

@ -87,11 +87,11 @@ setup(
'webencodings',
'gevent==1.1.2',
'webassets==0.12.0',
'pyamf'
#'pyamf'
],
dependency_links=[
'git+https://github.com/ikreymer/webassets.git@pyinstaller#egg=webassets-0.12.0',
'git+https://github.com/t0m/pyamf.git@python3#egg=pyamf-0.8.0'
#'git+https://github.com/t0m/pyamf.git@python3#egg=pyamf-0.8.0'
],
tests_require=[
'pytest',