Skip to content

Commit

Permalink
chore: update-dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
opensafely-github-bot committed Jan 17, 2025
1 parent 4bda291 commit 2c36edf
Show file tree
Hide file tree
Showing 6 changed files with 88 additions and 2 deletions.
49 changes: 49 additions & 0 deletions opensafely_pipeline.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
Metadata-Version: 2.1
Name: opensafely-pipeline
Version: 2024.10.11.170331
Summary: OpenSAFELY pipeline configuration parsing library
Author-email: OpenSAFELY <[email protected]>
License: ${GITHUB_REPOSITORY_NAME}
Copyright (C) University of Oxford

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.

Project-URL: Home, https://opensafely.org
Project-URL: Documentation, https://docs.opensafely.org
Project-URL: Source, https://github.com/opensafely-core/pipeline
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: ruyaml
Provides-Extra: fastparser
Requires-Dist: ruamel-yaml==0.18.6; extra == "fastparser"
Requires-Dist: ruamel-yaml-clib==0.2.8; extra == "fastparser"

# OpenSAFELY Pipeline Parser

This library takes the contents of an OpenSAFELY pipeline configuration file (`project.yaml` or `pipeline.yaml`), validates it, and parses it into a typed structure.

For example:

with open("/path/to/project.yaml") as f:
data = load_pipeline(f.read())


The returned object is an instance of `pipeline.models.Pipeline`.


## Developer docs

Please see the [additional information](DEVELOPERS.md).
30 changes: 30 additions & 0 deletions opensafely_pipeline.egg-info/SOURCES.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
LICENSE
README.md
pyproject.toml
version
fastparser/requirements.txt
opensafely_pipeline.egg-info/PKG-INFO
opensafely_pipeline.egg-info/SOURCES.txt
opensafely_pipeline.egg-info/dependency_links.txt
opensafely_pipeline.egg-info/requires.txt
opensafely_pipeline.egg-info/top_level.txt
pipeline/__init__.py
pipeline/__main__.py
pipeline/constants.py
pipeline/exceptions.py
pipeline/features.py
pipeline/legacy.py
pipeline/loading.py
pipeline/main.py
pipeline/models.py
pipeline/outputs.py
pipeline/validation.py
tests/test_fastparser.py
tests/test_features.py
tests/test_legacy.py
tests/test_loading.py
tests/test_main.py
tests/test_models.py
tests/test_outputs.py
tests/test_type_validation.py
tests/test_validation.py
1 change: 1 addition & 0 deletions opensafely_pipeline.egg-info/dependency_links.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@

5 changes: 5 additions & 0 deletions opensafely_pipeline.egg-info/requires.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
ruyaml

[fastparser]
ruamel-yaml==0.18.6
ruamel-yaml-clib==0.2.8
1 change: 1 addition & 0 deletions opensafely_pipeline.egg-info/top_level.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
pipeline
4 changes: 2 additions & 2 deletions requirements.dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ pytest-mock==3.14.0
# via -r requirements.dev.in
pyyaml==6.0.2
# via pre-commit
ruff==0.9.1
ruff==0.9.2
# via -r requirements.dev.in
six==1.17.0
# via asttokens
Expand All @@ -74,7 +74,7 @@ tomli==2.2.1
# pytest
typing-extensions==4.12.2
# via mypy
virtualenv==20.28.1
virtualenv==20.29.0
# via pre-commit
wheel==0.45.1
# via pip-tools
Expand Down

0 comments on commit 2c36edf

Please sign in to comment.