From c6393f86d70ca33385cc8029e9e5029c5627d5c3 Mon Sep 17 00:00:00 2001 From: Meet Mangukiya Date: Tue, 25 Feb 2020 03:29:49 +0530 Subject: Remove yarn/npm from docs Closes https://github.com/mitmproxy/mitmproxy/issues/3716 --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c9f83e4e..b36d8c4f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -145,7 +145,7 @@ jobs: python-version: '3.7' - run: pip install tox - run: | - wget https://github.com/gohugoio/hugo/releases/download/v0.59.1/hugo_0.59.1_Linux-64bit.deb + wget https://github.com/gohugoio/hugo/releases/download/v0.65.3/hugo_extended_0.65.3_Linux-64bit.deb sudo dpkg -i hugo*.deb - run: tox -e docs -- cgit v1.2.3 From 19aa7aeeb7aa7e66fed6e103dc19c91c55338674 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Thu, 2 Apr 2020 11:40:50 +0200 Subject: update mypy and pin version --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index b36d8c4f..fce4dcf3 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -31,7 +31,7 @@ jobs: steps: - uses: actions/checkout@v1 - uses: actions/setup-python@v1 - - run: pip install mypy + - run: pip install mypy==0.770 - run: mypy . test: strategy: -- cgit v1.2.3 From b67736bbefbc3d276ce3f873d0c7e76441459c92 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Fri, 3 Apr 2020 18:26:38 +0200 Subject: ci: py37 -> py38 --- .github/workflows/main.yml | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) (limited to '.github') diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fce4dcf3..0010aea1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -2,10 +2,6 @@ name: CI on: [push, pull_request] -# We currently use Python 3.7 for most things: -# - zstandard currently doesn't have 3.8 wheels, -# - we need to upgrade cryptography from version 2.4, which also doesn't have wheels - env: # Codecov CODECOV_TOKEN: "0409bdfd-57a4-477d-a8af-f6172ef431d3" @@ -44,9 +40,9 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-python@v1 with: - python-version: '3.7' + python-version: '3.8' - run: pip install tox - - run: tox -e py37 + - run: tox -e py38 # codecov's GitHub action only supports Linux. https://github.com/codecov/codecov-action/issues/7 # codecov's Python uploader has no github actions support yet. https://github.com/codecov/codecov-python/pull/214 - name: Extract branch name # https://stackoverflow.com/a/58035262/934719 @@ -77,7 +73,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-python@v1 with: - python-version: '3.7' + python-version: '3.8' - run: pip install tox - run: tox -e cibuild -- build - uses: actions/upload-artifact@master @@ -99,7 +95,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-python@v1 with: - python-version: '3.7' + python-version: '3.8' - if: matrix.os == 'windows-latest' uses: actions/cache@v1 with: @@ -142,7 +138,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-python@v1 with: - python-version: '3.7' + python-version: '3.8' - run: pip install tox - run: | wget https://github.com/gohugoio/hugo/releases/download/v0.65.3/hugo_extended_0.65.3_Linux-64bit.deb @@ -162,7 +158,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-python@v1 with: - python-version: '3.7' + python-version: '3.8' - run: pip install tox - uses: actions/download-artifact@master with: @@ -187,7 +183,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-python@v1 with: - python-version: '3.7' + python-version: '3.8' # artifacts must be downloaded individually, see https://github.com/actions/download-artifact/issues/6 - uses: actions/download-artifact@master with: -- cgit v1.2.3 From 35cb5ff4506a0131721b498eee59bc8680386d70 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Fri, 3 Apr 2020 18:38:01 +0200 Subject: downgrade to py37 for pyinstaller builds --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 0010aea1..59dad0ff 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -95,7 +95,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-python@v1 with: - python-version: '3.8' + python-version: '3.7' - if: matrix.os == 'windows-latest' uses: actions/cache@v1 with: @@ -158,7 +158,7 @@ jobs: - uses: actions/checkout@v1 - uses: actions/setup-python@v1 with: - python-version: '3.8' + python-version: '3.7' - run: pip install tox - uses: actions/download-artifact@master with: -- cgit v1.2.3