From a10d13d8a43d9a07b583568d0c3683693dd4f4d2 Mon Sep 17 00:00:00 2001 From: KOLANICH Date: Thu, 29 Apr 2021 15:18:52 +0300 Subject: [PATCH 1/2] Clarified maintainment status. Hello :) --- README.rst | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.rst b/README.rst index 99dce29d..9a158be5 100644 --- a/README.rst +++ b/README.rst @@ -4,6 +4,11 @@ Hyper: HTTP/2 Client for Python **This project is no longer maintained!** +@Lukasa has long dropped its maintainment. +The last maintainer was @Kriechi. He now has an own project, `HTTPX`_, that also supports HTTP/2 and is partially based on libs that were used in hyper, and now he develops it. + +He has left the message + Please use an alternative, such as `HTTPX`_ or others. .. _HTTPX: https://www.python-httpx.org/ @@ -18,6 +23,12 @@ Potential security issues will not be addressed. ---- +and archived the project. + +This fork is "maintained" by @KOLANICH. I don't really develop it, just add the stuff I need personally. + + + .. image:: https://raw.github.com/Lukasa/hyper/development/docs/source/images/hyper.png HTTP is changing under our feet. HTTP/1.1, our old friend, is being From eab61d12be68313a1c7053c1c8c2da7d4885fb8f Mon Sep 17 00:00:00 2001 From: KOLANICH Date: Tue, 12 Jan 2021 17:04:46 +0300 Subject: [PATCH 2/2] Added .editorconfig --- .editorconfig | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..04529356 --- /dev/null +++ b/.editorconfig @@ -0,0 +1,11 @@ +root = true + +[*.py] +charset = utf-8 +indent_style = space +indent_size = 4 +insert_final_newline = true +end_of_line = lf + +[*.{yaml,yml}] +indent_size = 2