Skip to content

Commit db29b8e

Browse files
committed
Files generated by PkgTemplates
PkgTemplates version: 0.7.26
1 parent 7457198 commit db29b8e

File tree

14 files changed

+289
-0
lines changed

14 files changed

+289
-0
lines changed

.github/workflows/CI.yml

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
name: CI
2+
on:
3+
push:
4+
branches:
5+
- main
6+
tags: '*'
7+
pull_request:
8+
concurrency:
9+
# Skip intermediate builds: always.
10+
# Cancel intermediate builds: only if it is a pull request build.
11+
group: ${{ github.workflow }}-${{ github.ref }}
12+
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
13+
jobs:
14+
test:
15+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
16+
runs-on: ${{ matrix.os }}
17+
strategy:
18+
fail-fast: false
19+
matrix:
20+
version:
21+
- '1.0'
22+
- '1.7'
23+
- 'nightly'
24+
os:
25+
- ubuntu-latest
26+
arch:
27+
- x64
28+
- x86
29+
steps:
30+
- uses: actions/checkout@v2
31+
- uses: julia-actions/setup-julia@v1
32+
with:
33+
version: ${{ matrix.version }}
34+
arch: ${{ matrix.arch }}
35+
- uses: julia-actions/cache@v1
36+
- uses: julia-actions/julia-buildpkg@v1
37+
- uses: julia-actions/julia-runtest@v1
38+
- uses: julia-actions/julia-processcoverage@v1
39+
- uses: codecov/codecov-action@v2
40+
with:
41+
files: lcov.info
42+
docs:
43+
name: Documentation
44+
runs-on: ubuntu-latest
45+
steps:
46+
- uses: actions/checkout@v2
47+
- uses: julia-actions/setup-julia@v1
48+
with:
49+
version: '1'
50+
- uses: julia-actions/julia-buildpkg@v1
51+
- uses: julia-actions/julia-docdeploy@v1
52+
env:
53+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
54+
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
55+
- run: |
56+
julia --project=docs -e '
57+
using Documenter: DocMeta, doctest
58+
using SymPyCall
59+
DocMeta.setdocmeta!(SymPyCall, :DocTestSetup, :(using SymPyCall); recursive=true)
60+
doctest(SymPyCall)'

.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: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: TagBot
2+
on:
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
7+
jobs:
8+
TagBot:
9+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: JuliaRegistries/TagBot@v1
13+
with:
14+
token: ${{ secrets.GITHUB_TOKEN }}
15+
ssh: ${{ secrets.DOCUMENTER_KEY }}

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.jl.*.cov
2+
*.jl.cov
3+
*.jl.mem
4+
/docs/build/

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) 2022 jverzani <jverzani@gmail.com> 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.

Manifest.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# This file is machine-generated - editing it directly is not advised
2+

Project.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name = "SymPyCall"
2+
uuid = "bc8888f7-b21e-4b7c-a06a-5d9c9496438c"
3+
authors = ["jverzani <jverzani@gmail.com> and contributors"]
4+
version = "0.1.0"
5+
6+
[compat]
7+
julia = "1"
8+
9+
[extras]
10+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
11+
12+
[targets]
13+
test = ["Test"]

README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# SymPyCall
2+
3+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://jverzani.github.io/SymPyCall.jl/stable)
4+
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://jverzani.github.io/SymPyCall.jl/dev)
5+
[![Build Status](https://github.com/jverzani/SymPyCall.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/jverzani/SymPyCall.jl/actions/workflows/CI.yml?query=branch%3Amain)
6+
[![Coverage](https://codecov.io/gh/jverzani/SymPyCall.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/jverzani/SymPyCall.jl)

docs/Manifest.toml

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
# This file is machine-generated - editing it directly is not advised
2+
3+
julia_version = "1.7.2"
4+
manifest_format = "2.0"
5+
6+
[[deps.ANSIColoredPrinters]]
7+
git-tree-sha1 = "574baf8110975760d391c710b6341da1afa48d8c"
8+
uuid = "a4c015fc-c6ff-483c-b24f-f7ea428134e9"
9+
version = "0.0.1"
10+
11+
[[deps.Base64]]
12+
uuid = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
13+
14+
[[deps.Dates]]
15+
deps = ["Printf"]
16+
uuid = "ade2ca70-3891-5945-98fb-dc099432e06a"
17+
18+
[[deps.DocStringExtensions]]
19+
deps = ["LibGit2"]
20+
git-tree-sha1 = "b19534d1895d702889b219c382a6e18010797f0b"
21+
uuid = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
22+
version = "0.8.6"
23+
24+
[[deps.Documenter]]
25+
deps = ["ANSIColoredPrinters", "Base64", "Dates", "DocStringExtensions", "IOCapture", "InteractiveUtils", "JSON", "LibGit2", "Logging", "Markdown", "REPL", "Test", "Unicode"]
26+
git-tree-sha1 = "cd0eb78e9b4202891ac61e74ca84402d01bafeba"
27+
uuid = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
28+
version = "0.27.14"
29+
30+
[[deps.IOCapture]]
31+
deps = ["Logging", "Random"]
32+
git-tree-sha1 = "f7be53659ab06ddc986428d3a9dcc95f6fa6705a"
33+
uuid = "b5f81e59-6552-4d32-b1f0-c071b021bf89"
34+
version = "0.2.2"
35+
36+
[[deps.InteractiveUtils]]
37+
deps = ["Markdown"]
38+
uuid = "b77e0a4c-d291-57a0-90e8-8db25a27a240"
39+
40+
[[deps.JSON]]
41+
deps = ["Dates", "Mmap", "Parsers", "Unicode"]
42+
git-tree-sha1 = "3c837543ddb02250ef42f4738347454f95079d4e"
43+
uuid = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
44+
version = "0.21.3"
45+
46+
[[deps.LibGit2]]
47+
deps = ["Base64", "NetworkOptions", "Printf", "SHA"]
48+
uuid = "76f85450-5226-5b5a-8eaa-529ad045b433"
49+
50+
[[deps.Logging]]
51+
uuid = "56ddb016-857b-54e1-b83d-db4d58db5568"
52+
53+
[[deps.Markdown]]
54+
deps = ["Base64"]
55+
uuid = "d6f4376e-aef5-505a-96c1-9c027394607a"
56+
57+
[[deps.Mmap]]
58+
uuid = "a63ad114-7e13-5084-954f-fe012c677804"
59+
60+
[[deps.NetworkOptions]]
61+
uuid = "ca575930-c2e3-43a9-ace4-1e988b2c1908"
62+
63+
[[deps.Parsers]]
64+
deps = ["Dates"]
65+
git-tree-sha1 = "13468f237353112a01b2d6b32f3d0f80219944aa"
66+
uuid = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"
67+
version = "2.2.2"
68+
69+
[[deps.Printf]]
70+
deps = ["Unicode"]
71+
uuid = "de0858da-6303-5e67-8744-51eddeeeb8d7"
72+
73+
[[deps.REPL]]
74+
deps = ["InteractiveUtils", "Markdown", "Sockets", "Unicode"]
75+
uuid = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
76+
77+
[[deps.Random]]
78+
deps = ["SHA", "Serialization"]
79+
uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
80+
81+
[[deps.SHA]]
82+
uuid = "ea8e919c-243c-51af-8825-aaa63cd721ce"
83+
84+
[[deps.Serialization]]
85+
uuid = "9e88b42a-f829-5b0c-bbe9-9e923198166b"
86+
87+
[[deps.Sockets]]
88+
uuid = "6462fe0b-24de-5631-8697-dd941f90decc"
89+
90+
[[deps.SymPyCall]]
91+
path = ".."
92+
uuid = "bc8888f7-b21e-4b7c-a06a-5d9c9496438c"
93+
version = "0.1.0"
94+
95+
[[deps.Test]]
96+
deps = ["InteractiveUtils", "Logging", "Random", "Serialization"]
97+
uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
98+
99+
[[deps.Unicode]]
100+
uuid = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"

docs/Project.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[deps]
2+
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
3+
SymPyCall = "bc8888f7-b21e-4b7c-a06a-5d9c9496438c"

0 commit comments

Comments
 (0)