Skip to content

Commit 1467109

Browse files
committed
Merge branch 'dev' into feature/github-actions
2 parents fd2600c + 2a0e5ee commit 1467109

File tree

6 files changed

+102
-2505
lines changed

6 files changed

+102
-2505
lines changed

.github/dependabot.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ updates:
1212
time: "00:00"
1313
reviewers:
1414
- "RyanJField"
15-
- "bruvio"
1615
commit-message:
1716
prefix: "pip"
1817
include: "scope"

.github/workflows/dependabot.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# To get started with Dependabot version updates, you'll need to specify which
2+
# package ecosystems to update and where the package manifests are located.
3+
# Please see the documentation for all configuration options:
4+
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+
version: 2
7+
updates:
8+
- package-ecosystem: "pip" # See documentation for possible values
9+
directory: "/" # Location of package manifests
10+
schedule:
11+
interval: "daily"
12+
time: "00:00"
13+
reviewers:
14+
- "RyanJField"
15+
- "bruvio"
16+
commit-message:
17+
prefix: "pip"
18+
include: "scope"
19+
open-pull-requests-limit: 5
20+
target-branch: "dev"

.github/workflows/pyDataPipeline.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ jobs:
99
name: Test ${{ matrix.os }} (Python ${{ matrix.python }})
1010
runs-on: ${{ matrix.os }}
1111
strategy:
12+
fail-fast: false
1213
matrix:
1314
os: [windows-latest,ubuntu-latest,macos-latest]
1415
python: ["3.9", "3.10", "3.x"]
@@ -36,6 +37,7 @@ jobs:
3637
run: mv pySimpleModel ../pySimpleModel
3738
- name: Run Tests on Windows
3839
run: |
40+
poetry cache clear pypi --all
3941
poetry install
4042
pip3 install fair-cli
4143
fair registry install

codemeta.json

Lines changed: 77 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,77 @@
1+
{
2+
"@context": "https://doi.org/10.5063/schema/codemeta-2.0",
3+
"type": "SoftwareSourceCode",
4+
"applicationCategory": "Software",
5+
"author": [
6+
{
7+
"id": "https://orcid.org/0000-0002-4424-9890",
8+
"type": "Person",
9+
"affiliation": {
10+
"type": "Organization",
11+
"name": "University of Glasgow"
12+
},
13+
"email": "[email protected]",
14+
"familyName": "Field",
15+
"givenName": "Ryan"
16+
},
17+
{
18+
"id": "https://orcid.org/0000-0002-4971-2346",
19+
"type": "Person",
20+
"affiliation": {
21+
"type": "Organization",
22+
"name": "The University of Sheffield"
23+
},
24+
"familyName": "Reddyhoff",
25+
"givenName": "Dennis"
26+
},
27+
{
28+
"id": "_:author_3",
29+
"type": "Person",
30+
"affiliation": {
31+
"type": "Organization",
32+
"name": "The University of Sheffield"
33+
},
34+
"familyName": "Turner",
35+
"givenName": "Robert"
36+
},
37+
{
38+
"id": "https://orcid.org/0000-0002-6773-1049",
39+
"type": "Person",
40+
"affiliation": {
41+
"type": "Organization",
42+
"name": "United Kingdom Atomic Energy Authority"
43+
},
44+
"familyName": "Zarebski",
45+
"givenName": "Kristian"
46+
}
47+
],
48+
"codeRepository": "git+https://github.com/FAIRDataPipeline/pyDataPipeline.git",
49+
"dateCreated": "2021-06-29",
50+
"dateModified": "2024-08-05",
51+
"datePublished": "2021-10-04",
52+
"description": "Python implementation of the data pipeline API for the FAIR Data Pipeline.",
53+
"downloadUrl": "https://github.com/FAIRDataPipeline/pyDataPipeline/archive/refs/tags/v0.8.0.tar.gz",
54+
"identifier": "10.5281/zenodo.5548002",
55+
"isPartOf": "https://www.fairdatapipeline.org",
56+
"keywords": [
57+
"FAIR",
58+
"Data Pipeline",
59+
"API"
60+
],
61+
"license": "https://spdx.org/licenses/GPL-3.0-or-later",
62+
"name": "pyDataPipeline",
63+
"operatingSystem": [
64+
"Linux",
65+
"Windows",
66+
"MacOS"
67+
],
68+
"programmingLanguage": "Python 3",
69+
"schema:releaseNotes": "Full change log: https://github.com/FAIRDataPipeline/pyDataPipeline/compare/v0.7.13...v0.8.0",
70+
"version": "0.8.0",
71+
"contIntegration": "https://github.com/FAIRDataPipeline/pyDataPipeline/actions",
72+
"codemeta:continuousIntegration": {
73+
"id": "https://github.com/FAIRDataPipeline/pyDataPipeline/actions"
74+
},
75+
"developmentStatus": "active",
76+
"issueTracker": "https://github.com/FAIRDataPipeline/pyDataPipeline/issues"
77+
}

0 commit comments

Comments
 (0)