aboutsummaryrefslogtreecommitdiffstats
path: root/release
diff options
context:
space:
mode:
authorThomas Kriechbaumer <thomas@kriechbaumer.name>2018-03-31 17:25:21 +0200
committerThomas Kriechbaumer <thomas@kriechbaumer.name>2018-03-31 18:46:32 +0200
commit46f8901b8cf46769f62b7268117d2e60fc785c00 (patch)
tree154a2669f1dd13c2632f6387fee1d8931fe4c735 /release
parent3c52ed6ee1948a1c4b0fa064fe7313bdfadb8950 (diff)
downloadmitmproxy-46f8901b8cf46769f62b7268117d2e60fc785c00.tar.gz
mitmproxy-46f8901b8cf46769f62b7268117d2e60fc785c00.tar.bz2
mitmproxy-46f8901b8cf46769f62b7268117d2e60fc785c00.zip
Python 3.5 is dead -- long live Python 3.6!
fixes #2266
Diffstat (limited to 'release')
-rw-r--r--release/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/README.md b/release/README.md
index b2f97aab..0e9c373b 100644
--- a/release/README.md
+++ b/release/README.md
@@ -27,7 +27,7 @@ Make sure run all these steps on the correct branch you want to create a new rel
- Create a new branch based of master for major versions.
- Update the dependencies in [alpine/requirements.txt](https://github.com/mitmproxy/docker-releases/commit/3d6a9989fde068ad0aea257823ac3d7986ff1613#diff-9b7e0eea8ae74688b1ac13ea080549ba)
* Creating a fresh venv, pip-installing the new wheel in there, and then export all packages:
- * `virtualenv -ppython3.5 venv && source venv/bin/activate && pip install mitmproxy && pip freeze`
+ * `virtualenv -ppython3.6 venv && source venv/bin/activate && pip install mitmproxy && pip freeze`
- Tag the commit with the correct version
* `2.0.0` for new major versions
* `2.0.2` for new patch versions