Skip to content

Commit 47fcb34

Browse files
Force the keyring disabling in ENV
1 parent 9f0df06 commit 47fcb34

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ pre-install:
1313
.PHONY: install
1414
install: pre-install ## Install the poetry environment and install the pre-commit hooks
1515
@echo "📦 Installing dependencies with Poetry"
16-
@$(POETRY) install --with core
16+
@PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring $(POETRY) install --with core
1717
@echo "🔧 Installing pre-commit hooks"
1818
@$(POETRY) run pre-commit install
1919
@echo "🐚 Activating virtual environment"
@@ -22,7 +22,7 @@ install: pre-install ## Install the poetry environment and install the pre-commi
2222
.PHONY: full-install
2323
full-install: pre-install ## Install the poetry environment and install the pre-commit hooks
2424
@echo "📦 Installing dependencies with Poetry"
25-
@$(POETRY) install --with core,docs,dev
25+
@PYTHON_KEYRING_BACKEND=keyring.backends.null.Keyring $(POETRY) install --with core,docs,dev
2626
@echo "🔧 Installing pre-commit hooks"
2727
@$(POETRY) run pre-commit install
2828
@echo "🐚 Activating virtual environment"

pyproject.toml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,6 @@ packages = [
1111
{include = "nebula"}
1212
]
1313

14-
[tool.poetry.config]
15-
use-keyring = false
16-
1714
[tool.poetry.dependencies]
1815
python = ">=3.10,<4.0"
1916
python-dotenv = "1.0.1"

0 commit comments

Comments
 (0)