Skip to content

Commit d253ce8

Browse files
committed
fix: update repository URLs and badges to reflect new ownership
1 parent 217db31 commit d253ce8

5 files changed

Lines changed: 14 additions & 20 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

2-
[![Commit Activity](https://img.shields.io/github/commit-activity/m/Luftfartsverket/reqstool-python-decorators?label=commits&style=for-the-badge)](https://github.com/Luftfartsverket/reqstool-python-decorators/pulse)
3-
[![GitHub Issues](https://img.shields.io/github/issues/Luftfartsverket/reqstool-python-decorators?style=for-the-badge&logo=github)](https://github.com/Luftfartsverket/reqstool-python-decorators/issues)
4-
[![License](https://img.shields.io/github/license/Luftfartsverket/reqstool-python-decorators?style=for-the-badge&logo=opensourceinitiative)](https://opensource.org/license/mit/)
5-
[![Build](https://img.shields.io/github/actions/workflow/status/Luftfartsverket/reqstool-python-decorators/build.yml?style=for-the-badge&logo=github)](https://github.com/Luftfartsverket/reqstool-python-decorators/actions/workflows/build.yml)
6-
[![Static Badge](https://img.shields.io/badge/Documentation-blue?style=for-the-badge&link=docs)](https://luftfartsverket.github.io/reqstool-python-decorators/reqstool-python-decorators/0.0.1/index.html)
2+
[![Commit Activity](https://img.shields.io/github/commit-activity/m/reqstool/reqstool-python-decorators?label=commits&style=for-the-badge)](https://github.com/reqstool/reqstool-python-decorators/pulse)
3+
[![GitHub Issues](https://img.shields.io/github/issues/reqstool/reqstool-python-decorators?style=for-the-badge&logo=github)](https://github.com/reqstool/reqstool-python-decorators/issues)
4+
[![License](https://img.shields.io/github/license/reqstool/reqstool-python-decorators?style=for-the-badge&logo=opensourceinitiative)](https://opensource.org/license/mit/)
5+
[![Build](https://img.shields.io/github/actions/workflow/status/reqstool/reqstool-python-decorators/build.yml?style=for-the-badge&logo=github)](https://github.com/reqstool/reqstool-python-decorators/actions/workflows/build.yml)
6+
[![Static Badge](https://img.shields.io/badge/Documentation-blue?style=for-the-badge&link=docs)](https://reqstool.github.io/reqstool-python-decorators/reqstool-python-decorators/0.0.1/index.html)
77

88
# Reqstool Python Decorators
99

docs/antora-playbook.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
site:
44
title: Reqstool Python Decorators Documentation
5-
url: https://github.com/Luftfartsverket/reqstool-python-decorators.git
5+
url: https://github.com/reqstool/reqstool-python-decorators.git
66
start_page: reqstool-python-decorators::index.adoc
77

88
content:

pyproject.toml

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,22 @@ testpaths = ["tests/unit"]
1010
[project]
1111
name = "reqstool-python-decorators"
1212
dynamic = ["version"]
13-
authors = [{ name = "LFV SYSDEV", email = "sysdev@lfv.com" }]
13+
authors = [{ name = "reqstool" }]
1414
description = "Reqstool Python Decorators"
1515
readme = "README.md"
16-
17-
homepage = "https://github.com/Luftfartsverket/reqstool-python-decorators.git"
18-
repository = "https://github.com/Luftfartsverket/reqstool-python-decorators.git"
19-
documentation = "hhttps://github.com/Luftfartsverket/reqstool-python-decorators.git"
20-
21-
urls.Source = "https://github.com/Luftfartsverket/reqstool-python-decorators.git"
22-
16+
requires-python = ">=3.10"
2317
classifiers = [
2418
"License :: OSI Approved :: MIT License",
2519
"Programming Language :: Python :: 3",
2620
"Operating System :: OS Independent",
2721
"Development Status :: 4 - Beta",
2822
]
29-
30-
requires-python = ">=3.10"
31-
3223
dependencies = ["ruamel.yaml>=0.18.5"]
3324

34-
packages = [{ include = "reqstool_python_decorators", from = "src" }]
25+
[project.urls]
26+
Homepage = "https://reqstool.github.io"
27+
Source = "https://github.com/reqstool/reqstool-python-decorators.git"
28+
Documentation = "https://github.com/reqstool/reqstool-python-decorators.git"
3529

3630
[project.scripts]
3731
# section needed for poetry convertion

src/reqstool_python_decorators/processors/decorator_processor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ class DecoratorProcessor:
3232

3333
decorators_to_search = ["Requirements", "SVCs"]
3434

35-
yaml_language_server = "# yaml-language-server: $schema=https://raw.githubusercontent.com/Luftfartsverket/reqstool-client/main/src/reqstool/resources/schemas/v1/annotations.schema.json\n" # noqa: E501
35+
yaml_language_server = "# yaml-language-server: $schema=https://raw.githubusercontent.com/reqstool/reqstool-client/main/src/reqstool/resources/schemas/v1/annotations.schema.json\n" # noqa: E501
3636

3737
def __init__(self, *args, **kwargs):
3838
"""

tests/unit/reqstool_decorators/processors/test_processors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def test_map_type_unknown_type(process_decorator_instance: DecoratorProcessor):
3737

3838

3939
def test_write_to_yaml(process_decorator_instance: DecoratorProcessor, tmp_path):
40-
yaml_language_server = "# yaml-language-server: $schema=https://raw.githubusercontent.com/Luftfartsverket/reqstool-client/main/src/reqstool/resources/schemas/v1/annotations.schema.json\n" # noqa: E501
40+
yaml_language_server = "# yaml-language-server: $schema=https://raw.githubusercontent.com/reqstool/reqstool-client/main/src/reqstool/resources/schemas/v1/annotations.schema.json\n" # noqa: E501
4141

4242
test_output_file = tmp_path / "test_output.yml"
4343
sample_formatted_data = """

0 commit comments

Comments
 (0)