Skip to content
This repository was archived by the owner on Mar 2, 2026. It is now read-only.
/ mkuser Public archive

Commit b5be3d3

Browse files
committed
Reduce pyyaml requirements for Rocky 9
1 parent e446f60 commit b5be3d3

File tree

3 files changed

+22
-10
lines changed

3 files changed

+22
-10
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.PHONY: tests
22
tests:
3-
python3 -m pytest
3+
python3 -m poetry run pytest
44

55
.PHONY: lint
66
lint:

poetry.lock

Lines changed: 19 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "mkuser"
3-
version = "2.1.0"
3+
version = "2.1.1"
44
description = "`mkuser` is a simple tool to allow for the easy creation of users on a tilde style server."
55
authors = ["Andrew Williams <andy@tensixtyone.com>"]
66
license = "MIT"
@@ -11,7 +11,7 @@ mkuser = 'mkuser.cli:main'
1111

1212
[tool.poetry.dependencies]
1313
python = "^3.9"
14-
pyyaml = "^6.0.1"
14+
pyyaml = ">= 5.4"
1515

1616
[tool.poetry.group.test.dependencies]
1717
ruff = "^0.11.0"

0 commit comments

Comments
 (0)