From cd4beb053d7ceae46789108110bbf25a2f9bf755 Mon Sep 17 00:00:00 2001 From: Keith Harvey Date: Fri, 21 Aug 2026 12:07:12 +0100 Subject: [PATCH] =?UTF-8?q?docs:=20point=20install=20at=20the=20repo=20?= =?UTF-8?q?=E2=80=94=20envars2=20is=20not=20on=20PyPI?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 'pip install envars' installs an unrelated third-party package (envars 0.3.5 from PyPI); this project is not published there, so the PyPI badge 404s too. Point install at the GitHub repo and drop the badge until the package is actually published. Co-Authored-By: Claude Fable 5 --- README.md | 3 +-- docs/getting-started.md | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 083ddf2..d3210b1 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ # Envars: Application Config as Code -[![PyPI version](https://badge.fury.io/py/envars2.svg)](https://badge.fury.io/py/envars2) [![Documentation Status](https://readthedocs.org/projects/envars/badge/?version=latest)](https://envars.readthedocs.io/en/latest/?badge=latest) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) @@ -24,7 +23,7 @@ Stop juggling `.env` files and start treating your configuration like code. ## Installation ```bash -pip install envars +pip install git+https://github.com/timeoutdigital/envars2.git ``` ## Quick Start diff --git a/docs/getting-started.md b/docs/getting-started.md index b989829..09d0457 100644 --- a/docs/getting-started.md +++ b/docs/getting-started.md @@ -7,7 +7,7 @@ This tutorial will guide you through the basics of using `envars` to manage your First, install `envars` using `pip`: ```bash -pip install envars +pip install git+https://github.com/timeoutdigital/envars2.git ``` ## 2. Initialize Your Project