From 3fc39f9c59f9e0f49070a7bdfa400f1527034403 Mon Sep 17 00:00:00 2001 From: eumis Date: Mon, 27 Apr 2020 16:17:36 +0300 Subject: [PATCH 1/8] updated travis config --- .travis.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 9c1e84e..a641907 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,12 +3,11 @@ language: python python: 3.7 # command to install dependencies install: - - pip install pipenv - - pipenv run pip install -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-16.04 wxPython - - pipenv install + - pip install -f https://extras.wxpython.org/wxPython4/extras/linux/gtk2/ubuntu-16.04 wxPython + - pip install -p # command to run tests script: - - pipenv run python -m pytest + - python -m pytest deploy: on: branch: dev From 0f57d84b0aa7288b4fef3b8f891e17f8660d8a9b Mon Sep 17 00:00:00 2001 From: eumis Date: Mon, 27 Apr 2020 16:20:07 +0300 Subject: [PATCH 2/8] used 4.0.7 wxpython version --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a641907..33d5faf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ language: python python: 3.7 # command to install dependencies install: - - pip install -f https://extras.wxpython.org/wxPython4/extras/linux/gtk2/ubuntu-16.04 wxPython + - pip install -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-16.04 "wxPython==4.0.7" - pip install -p # command to run tests script: From 38b0444c9798973033379b1db6a9e1cfcec61518 Mon Sep 17 00:00:00 2001 From: eumis Date: Mon, 27 Apr 2020 16:23:14 +0300 Subject: [PATCH 3/8] used pipenv --- .travis.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 33d5faf..bcabbda 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,11 +3,12 @@ language: python python: 3.7 # command to install dependencies install: - - pip install -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-16.04 "wxPython==4.0.7" - - pip install -p + - pip install pipenv + - pipenv run pip install -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-16.04 "wxPython==4.0.7" + - pipenv install # command to run tests script: - - python -m pytest + - pipenv run python -m pytest deploy: on: branch: dev From 47c959ee42b835eb620256b33888b730f489c1cb Mon Sep 17 00:00:00 2001 From: eumis Date: Mon, 27 Apr 2020 16:48:33 +0300 Subject: [PATCH 4/8] wxPython path --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index bcabbda..c060475 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,7 +4,7 @@ python: 3.7 # command to install dependencies install: - pip install pipenv - - pipenv run pip install -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-16.04 "wxPython==4.0.7" + - pipenv run pip install -U -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-16.04 "wxPython==4.0.7" - pipenv install # command to run tests script: From 6a643ea7042df03b42eecb48da56742377a5ddba Mon Sep 17 00:00:00 2001 From: eumis Date: Mon, 27 Apr 2020 16:52:08 +0300 Subject: [PATCH 5/8] removed pipenv from build --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index c060475..04407b6 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,12 +3,12 @@ language: python python: 3.7 # command to install dependencies install: - - pip install pipenv - - pipenv run pip install -U -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-16.04 "wxPython==4.0.7" - - pipenv install + - pip install -U -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-16.04 "wxPython==4.0.7" + - pip install -e . + - pip install pytest # command to run tests script: - - pipenv run python -m pytest + - python -m pytest deploy: on: branch: dev From 41f5a930051230a73b67cb4cec4f0cbef9eea385 Mon Sep 17 00:00:00 2001 From: eumis Date: Mon, 27 Apr 2020 16:54:39 +0300 Subject: [PATCH 6/8] used last wxPython version --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 04407b6..ff0aa99 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ language: python python: 3.7 # command to install dependencies install: - - pip install -U -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-16.04 "wxPython==4.0.7" + - pip install -U -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-16.04 wxPython - pip install -e . - pip install pytest # command to run tests From 78283ff482ce6dfa62152c7d80be353035b4e874 Mon Sep 17 00:00:00 2001 From: eumis Date: Mon, 27 Apr 2020 16:57:00 +0300 Subject: [PATCH 7/8] used gtk2 for build --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index ff0aa99..fd82a9e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ language: python python: 3.7 # command to install dependencies install: - - pip install -U -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-16.04 wxPython + - pip install -U -f https://extras.wxpython.org/wxPython4/extras/linux/gtk2/ubuntu-16.04 wxPython - pip install -e . - pip install pytest # command to run tests From 0420f2a5dcc050cdc5dfc0e56ec6a7eecb7b319e Mon Sep 17 00:00:00 2001 From: eumis Date: Mon, 27 Apr 2020 16:58:46 +0300 Subject: [PATCH 8/8] used previews wxPython --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index fd82a9e..144af7a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,7 +3,7 @@ language: python python: 3.7 # command to install dependencies install: - - pip install -U -f https://extras.wxpython.org/wxPython4/extras/linux/gtk2/ubuntu-16.04 wxPython + - pip install -U -f https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-16.04 wxPython==4.0.7 - pip install -e . - pip install pytest # command to run tests