-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Do not squash this commit
- Loading branch information
Showing
35 changed files
with
1,491 additions
and
345 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: CompatHelper | ||
on: | ||
schedule: | ||
- cron: 0 0 * * * | ||
workflow_dispatch: | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
jobs: | ||
CompatHelper: | ||
if: github.repository == 'QEDjl-project/QEDcore.jl' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check if Julia is already available in the PATH | ||
id: julia_in_path | ||
run: which julia | ||
continue-on-error: true | ||
- name: Install Julia, but only if it is not already available in the PATH | ||
uses: julia-actions/setup-julia@v1 | ||
with: | ||
version: '1' | ||
arch: ${{ runner.arch }} | ||
if: steps.julia_in_path.outcome != 'success' | ||
- name: "Add the General registry via Git" | ||
run: | | ||
import Pkg | ||
ENV["JULIA_PKG_SERVER"] = "" | ||
Pkg.Registry.add("General") | ||
shell: julia --color=yes {0} | ||
- name: "Install CompatHelper" | ||
run: | | ||
import Pkg | ||
name = "CompatHelper" | ||
uuid = "aa819f21-2bde-4658-8897-bab36330d9b7" | ||
version = "3" | ||
Pkg.add(; name, uuid, version) | ||
shell: julia --color=yes {0} | ||
- name: "Run CompatHelper" | ||
run: | | ||
import CompatHelper | ||
CompatHelper.main(; master_branch="dev") | ||
shell: julia --color=yes {0} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
COMPATHELPER_PRIV: ${{ secrets.COMPATHELPER_PRIV }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: TagBot | ||
on: | ||
issue_comment: | ||
types: | ||
- created | ||
workflow_dispatch: | ||
inputs: | ||
lookback: | ||
default: "3" | ||
permissions: | ||
actions: read | ||
checks: read | ||
contents: write | ||
deployments: read | ||
issues: read | ||
discussions: read | ||
packages: read | ||
pages: read | ||
pull-requests: read | ||
repository-projects: read | ||
security-events: read | ||
statuses: read | ||
jobs: | ||
TagBot: | ||
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: JuliaRegistries/TagBot@v1 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
ssh: ${{ secrets.TAGBOT_PRIV }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
*Manifest.toml | ||
docs/build/ | ||
|
||
docs/src/particles_manual.ipynb | ||
docs/src/particles_manual.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,7 @@ | ||
name = "QEDcore" | ||
uuid = "35dc0263-cb5f-4c33-a114-1d7f54ab753e" | ||
authors = [ | ||
"Uwe Hernandez Acosta <[email protected]>", | ||
"Anton Reinhard <[email protected]>", | ||
] | ||
version = "0.1.1" | ||
authors = ["Uwe Hernandez Acosta <[email protected]>", "Anton Reinhard"] | ||
version = "0.2.0" | ||
|
||
[deps] | ||
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae" | ||
|
@@ -14,12 +11,12 @@ SimpleTraits = "699a6c99-e7fa-54fc-8d76-47d257e15c1d" | |
StaticArrays = "90137ffa-7385-5640-81b9-e52037218182" | ||
|
||
[compat] | ||
DocStringExtensions = "^0.9" | ||
QEDbase = "0.2.2" | ||
Reexport = "^1.2" | ||
SimpleTraits = "^0.9" | ||
StaticArrays = "^1.9" | ||
julia = "1.6" | ||
DocStringExtensions = "0.9" | ||
QEDbase = "0.3.0" | ||
Reexport = "1.2" | ||
SimpleTraits = "0.9" | ||
StaticArrays = "1.9" | ||
julia = "1.10" | ||
|
||
[extras] | ||
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e" | ||
|
@@ -29,10 +26,4 @@ SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf" | |
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" | ||
|
||
[targets] | ||
test = [ | ||
"Random", | ||
"LinearAlgebra", | ||
"SafeTestsets", | ||
"Test", | ||
"SparseArrays", | ||
] | ||
test = ["Random", "LinearAlgebra", "SafeTestsets", "Test", "SparseArrays"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,41 @@ | ||
# QEDcore | ||
# QEDcore.jl | ||
|
||
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://QEDjl-project.github.io/QEDcore.jl/stable/) | ||
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://QEDjl-project.github.io/QEDcore.jl/dev/) | ||
[![Build Status](https://github.com/QEDjl-project/QEDcore.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/QEDjl-project/QEDcore.jl/actions/workflows/CI.yml?query=branch%3Amain) | ||
[![Code Style: Blue](https://img.shields.io/badge/code%20style-blue-4495d1.svg)](https://github.com/invenia/BlueStyle) | ||
|
||
This package is part of the `QuantumElectrodynamics.jl` library. For the description of the interoperability with other packages of `QuantumElectrodynamics.jl` see [docs](https://qedjl-project.github.io/QuantumElectrodynamics.jl/dev/). | ||
|
||
This package's main purpose is to provide implementations of the basic interfaces defined in [`QEDbase.jl`](https://github.com/QEDjl-project/QEDbase.jl), such as various particle types, `PhasespaceDefinition`, `PhaseSpacePoint`, and various vector and matrix types. These types are used across most of the QEDjl-project repositories. For detailed information on these types, please refer to the respective pages in the [docs](https://qedjl-project.github.io/QEDcore.jl/dev/). | ||
|
||
## Contributing | ||
|
||
Contributions are welcome! If you'd like to report a bug, suggest an enhancement, or contribute | ||
code, please feel free to open an issue or submit a pull request. | ||
|
||
To ensure consistency across the `QuantumElectrodynamics.jl` ecosystem, we encourage all contributors | ||
to review the [QuantumElectrodynamics.jl contribution guide](https://qedjl-project.github.io/QuantumElectrodynamics.jl/stable/dev_guide/#Development-Guide). | ||
|
||
## Credits and contributors | ||
|
||
This work was partly funded by the Center for Advanced Systems Understanding (CASUS) that | ||
is financed by Germany’s Federal Ministry of Education and Research (BMBF) and by the Saxon | ||
Ministry for Science, Culture and Tourism (SMWK) with tax funds on the basis of the budget | ||
approved by the Saxon State Parliament. | ||
|
||
The core code of the package `QEDcore.jl` is developed by a small team at the Center for | ||
Advanced Systems Understanding ([CASUS](https://www.casus.science)), namely | ||
|
||
### Core Contributors | ||
|
||
- **Uwe Hernandez Acosta** (CASUS/HZDR, [[email protected]](mailto:[email protected])) | ||
- **Anton Reinhard** (CASUS/HZDR) | ||
- **Simeon Ehrig** (CASUS/HZDR) | ||
|
||
### Former Contributors | ||
|
||
We extend our sincere thanks to all contributors who have supported this project. | ||
|
||
## License | ||
|
||
[MIT](LICENSE) © Uwe Hernandez Acosta |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,8 @@ | ||
[deps] | ||
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf" | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
DocumenterInterLinks = "d12716ef-a0f6-4df4-a9f1-a5a34e75c656" | ||
Literate = "98b081ad-f1c9-55d3-8b20-4c87d4299306" | ||
QEDbase = "10e22c08-3ccb-4172-bfcf-7d7aa3d04d93" | ||
QEDcore = "35dc0263-cb5f-4c33-a114-1d7f54ab753e" | ||
QEDprocesses = "46de9c38-1bb3-4547-a1ec-da24d767fdad" |
Oops, something went wrong.