Skip to content

Commit ef83223

Browse files
committed
Files generated by PkgTemplates
PkgTemplates version: 0.7.53
1 parent b949ead commit ef83223

File tree

12 files changed

+320
-0
lines changed

12 files changed

+320
-0
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
2+
version: 2
3+
updates:
4+
- package-ecosystem: "github-actions"
5+
directory: "/" # Location of package manifests
6+
schedule:
7+
interval: "weekly"

.github/workflows/CI.yml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: CI
2+
on:
3+
push:
4+
branches:
5+
- main
6+
tags: ['*']
7+
pull_request:
8+
workflow_dispatch:
9+
concurrency:
10+
# Skip intermediate builds: always.
11+
# Cancel intermediate builds: only if it is a pull request build.
12+
group: ${{ github.workflow }}-${{ github.ref }}
13+
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
14+
jobs:
15+
test:
16+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
17+
runs-on: ${{ matrix.os }}
18+
timeout-minutes: 60
19+
permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created
20+
actions: write
21+
contents: read
22+
strategy:
23+
fail-fast: false
24+
matrix:
25+
version:
26+
- '1.6'
27+
- 'lts'
28+
- 'pre'
29+
os:
30+
- ubuntu-latest
31+
arch:
32+
- x64
33+
steps:
34+
- uses: actions/checkout@v4
35+
- uses: julia-actions/setup-julia@v2
36+
with:
37+
version: ${{ matrix.version }}
38+
arch: ${{ matrix.arch }}
39+
- uses: julia-actions/cache@v2
40+
- uses: julia-actions/julia-buildpkg@v1
41+
- uses: julia-actions/julia-runtest@v1

.github/workflows/CompatHelper.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CompatHelper
2+
on:
3+
schedule:
4+
- cron: 0 0 * * *
5+
workflow_dispatch:
6+
jobs:
7+
CompatHelper:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Pkg.add("CompatHelper")
11+
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
12+
- name: CompatHelper.main()
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15+
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
16+
run: julia -e 'using CompatHelper; CompatHelper.main()'

.github/workflows/TagBot.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: TagBot
2+
on:
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
7+
inputs:
8+
lookback:
9+
default: "3"
10+
permissions:
11+
actions: read
12+
checks: read
13+
contents: write
14+
deployments: read
15+
issues: read
16+
discussions: read
17+
packages: read
18+
pages: read
19+
pull-requests: read
20+
repository-projects: read
21+
security-events: read
22+
statuses: read
23+
jobs:
24+
TagBot:
25+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
26+
runs-on: ubuntu-latest
27+
steps:
28+
- uses: JuliaRegistries/TagBot@v1
29+
with:
30+
token: ${{ secrets.GITHUB_TOKEN }}
31+
ssh: ${{ secrets.DOCUMENTER_KEY }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/Manifest.toml

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2025 Felix Cremer <[email protected]> and contributors
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

Project.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
name = "SentinelDataSource"
2+
uuid = "afd1bdb2-e5b9-463c-8ecd-ef9b9458f1b0"
3+
authors = ["Felix Cremer <[email protected]> and contributors"]
4+
version = "0.1.0-DEV"
5+
6+
[compat]
7+
julia = "1.6.7"

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# SentinelDataSource
2+
3+
[![Build Status](https://github.com/felixcremer/SentinelDataSource.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/felixcremer/SentinelDataSource.jl/actions/workflows/CI.yml?query=branch%3Amain)
4+
[![Aqua](https://raw.githubusercontent.com/JuliaTesting/Aqua.jl/master/badge.svg)](https://github.com/JuliaTesting/Aqua.jl)

src/SentinelDataSource.jl

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module SentinelDataSource
2+
3+
# Write your package code here.
4+
5+
end

test/Manifest.toml

Lines changed: 174 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,174 @@
1+
# This file is machine-generated - editing it directly is not advised
2+
3+
julia_version = "1.11.3"
4+
manifest_format = "2.0"
5+
project_hash = "0be457628dfd5d423c82c1e12d8129fa1cf18c88"
6+
7+
[[deps.Aqua]]
8+
deps = ["Compat", "Pkg", "Test"]
9+
git-tree-sha1 = "500941611ff835a025f484f55836f6feea61720a"
10+
uuid = "4c88cf16-eb10-579e-8560-4a9242c79595"
11+
version = "0.8.11"
12+
13+
[[deps.ArgTools]]
14+
uuid = "0dad84c5-d112-42e6-8d28-ef12dabb789f"
15+
version = "1.1.2"
16+
17+
[[deps.Artifacts]]
18+
uuid = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
19+
version = "1.11.0"
20+
21+
[[deps.Base64]]
22+
uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
23+
version = "1.11.0"
24+
25+
[[deps.Compat]]
26+
deps = ["TOML", "UUIDs"]
27+
git-tree-sha1 = "8ae8d32e09f0dcf42a36b90d4e17f5dd2e4c4215"
28+
uuid = "34da2185-b29b-5c13-b0c7-acf172513d20"
29+
version = "4.16.0"
30+
31+
[deps.Compat.extensions]
32+
CompatLinearAlgebraExt = "LinearAlgebra"
33+
34+
[deps.Compat.weakdeps]
35+
Dates = "ade2ca70-3891-5945-98fb-dc099432e06a"
36+
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
37+
38+
[[deps.Dates]]
39+
deps = ["Printf"]
40+
uuid = "ade2ca70-3891-5945-98fb-dc099432e06a"
41+
version = "1.11.0"
42+
43+
[[deps.Downloads]]
44+
deps = ["ArgTools", "FileWatching", "LibCURL", "NetworkOptions"]
45+
uuid = "f43a241f-c20a-4ad4-852c-f6b1247861c6"
46+
version = "1.6.0"
47+
48+
[[deps.FileWatching]]
49+
uuid = "7b1f6079-737a-58dc-b8bc-7a2ca5c1b5ee"
50+
version = "1.11.0"
51+
52+
[[deps.InteractiveUtils]]
53+
deps = ["Markdown"]
54+
uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
55+
version = "1.11.0"
56+
57+
[[deps.LibCURL]]
58+
deps = ["LibCURL_jll", "MozillaCACerts_jll"]
59+
uuid = "b27032c2-a3e7-50c8-80cd-2d36dbcbfd21"
60+
version = "0.6.4"
61+
62+
[[deps.LibCURL_jll]]
63+
deps = ["Artifacts", "LibSSH2_jll", "Libdl", "MbedTLS_jll", "Zlib_jll", "nghttp2_jll"]
64+
uuid = "deac9b47-8bc7-5906-a0fe-35ac56dc84c0"
65+
version = "8.6.0+0"
66+
67+
[[deps.LibGit2]]
68+
deps = ["Base64", "LibGit2_jll", "NetworkOptions", "Printf", "SHA"]
69+
uuid = "76f85450-5226-5b5a-8eaa-529ad045b433"
70+
version = "1.11.0"
71+
72+
[[deps.LibGit2_jll]]
73+
deps = ["Artifacts", "LibSSH2_jll", "Libdl", "MbedTLS_jll"]
74+
uuid = "e37daf67-58a4-590a-8e99-b0245dd2ffc5"
75+
version = "1.7.2+0"
76+
77+
[[deps.LibSSH2_jll]]
78+
deps = ["Artifacts", "Libdl", "MbedTLS_jll"]
79+
uuid = "29816b5a-b9ab-546f-933c-edad1886dfa8"
80+
version = "1.11.0+1"
81+
82+
[[deps.Libdl]]
83+
uuid = "8f399da3-3557-5675-b5ff-fb832c97cbdb"
84+
version = "1.11.0"
85+
86+
[[deps.Logging]]
87+
uuid = "56ddb016-857b-54e1-b83d-db4d58db5568"
88+
version = "1.11.0"
89+
90+
[[deps.Markdown]]
91+
deps = ["Base64"]
92+
uuid = "d6f4376e-aef5-505a-96c1-9c027394607a"
93+
version = "1.11.0"
94+
95+
[[deps.MbedTLS_jll]]
96+
deps = ["Artifacts", "Libdl"]
97+
uuid = "c8ffd9c3-330d-5841-b78e-0817d7145fa1"
98+
version = "2.28.6+0"
99+
100+
[[deps.MozillaCACerts_jll]]
101+
uuid = "14a3606d-f60d-562e-9121-12d972cd8159"
102+
version = "2023.12.12"
103+
104+
[[deps.NetworkOptions]]
105+
uuid = "ca575930-c2e3-43a9-ace4-1e988b2c1908"
106+
version = "1.2.0"
107+
108+
[[deps.Pkg]]
109+
deps = ["Artifacts", "Dates", "Downloads", "FileWatching", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "Random", "SHA", "TOML", "Tar", "UUIDs", "p7zip_jll"]
110+
uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
111+
version = "1.11.0"
112+
113+
[deps.Pkg.extensions]
114+
REPLExt = "REPL"
115+
116+
[deps.Pkg.weakdeps]
117+
REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
118+
119+
[[deps.Printf]]
120+
deps = ["Unicode"]
121+
uuid = "de0858da-6303-5e67-8744-51eddeeeb8d7"
122+
version = "1.11.0"
123+
124+
[[deps.Random]]
125+
deps = ["SHA"]
126+
uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
127+
version = "1.11.0"
128+
129+
[[deps.SHA]]
130+
uuid = "ea8e919c-243c-51af-8825-aaa63cd721ce"
131+
version = "0.7.0"
132+
133+
[[deps.Serialization]]
134+
uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
135+
version = "1.11.0"
136+
137+
[[deps.TOML]]
138+
deps = ["Dates"]
139+
uuid = "fa267f1f-6049-4f14-aa54-33bafae1ed76"
140+
version = "1.0.3"
141+
142+
[[deps.Tar]]
143+
deps = ["ArgTools", "SHA"]
144+
uuid = "a4e569a6-e804-4fa4-b0f3-eef7a1d5b13e"
145+
version = "1.10.0"
146+
147+
[[deps.Test]]
148+
deps = ["InteractiveUtils", "Logging", "Random", "Serialization"]
149+
uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
150+
version = "1.11.0"
151+
152+
[[deps.UUIDs]]
153+
deps = ["Random", "SHA"]
154+
uuid = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
155+
version = "1.11.0"
156+
157+
[[deps.Unicode]]
158+
uuid = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"
159+
version = "1.11.0"
160+
161+
[[deps.Zlib_jll]]
162+
deps = ["Libdl"]
163+
uuid = "83775a58-1f1d-513f-b197-d71354ab007a"
164+
version = "1.2.13+1"
165+
166+
[[deps.nghttp2_jll]]
167+
deps = ["Artifacts", "Libdl"]
168+
uuid = "8e850ede-7688-5339-a07c-302acd2aaf8d"
169+
version = "1.59.0+0"
170+
171+
[[deps.p7zip_jll]]
172+
deps = ["Artifacts", "Libdl"]
173+
uuid = "3f19e933-33d8-53b3-aaab-bd5110c3b7a0"
174+
version = "17.4.0+2"

0 commit comments

Comments
 (0)