From 4b4fc54ea3367ae8587dbd54c28858d76e0d6e41 Mon Sep 17 00:00:00 2001 From: Joshua Bronson Date: Wed, 30 Sep 2020 14:59:48 +0000 Subject: [PATCH] Update README to reference latest Python and Trio --- .gitignore | 1 + README.rst | 2 +- requirements.in | 1 + requirements.txt | 13 +++++++++++++ 4 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 requirements.in create mode 100644 requirements.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1d17dae --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.venv diff --git a/README.rst b/README.rst index ebba2ad..ef920c2 100644 --- a/README.rst +++ b/README.rst @@ -4,7 +4,7 @@ trio_http_proxy.py Simple HTTP CONNECT proxy implemented with `Trio `__. -Tested with Python 3.7 and Trio 0.11.0 +Tested with Python 3.8 and Trio 0.17.0 (but other versions probably work too). diff --git a/requirements.in b/requirements.in new file mode 100644 index 0000000..ae0d704 --- /dev/null +++ b/requirements.in @@ -0,0 +1 @@ +trio diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..215be53 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,13 @@ +# +# This file is autogenerated by pip-compile +# To update, run: +# +# pip-compile +# +async-generator==1.10 # via trio +attrs==20.2.0 # via trio +idna==2.10 # via trio +outcome==1.0.1 # via trio +sniffio==1.1.0 # via trio +sortedcontainers==2.2.2 # via trio +trio==0.17.0 # via -r requirements.in