Skip to content

Commit b83ff4b

Browse files
szabo137Uwe Hernandez Acosta
andauthored
Implementing the interface and coordinate systems (#4)
* added interface and coord sys: xyze, ptetaphim * formatting * cleanup * implemented full components for exyz * formatting * bump Julia version in formatter to 1.10 * fixed formatter --------- Co-authored-by: Uwe Hernandez Acosta <[email protected]>
1 parent fd5160a commit b83ff4b

File tree

9 files changed

+740
-226
lines changed

9 files changed

+740
-226
lines changed

.formatting/Manifest.toml

Lines changed: 0 additions & 221 deletions
This file was deleted.

.github/workflows/formatter.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- name: install Julia
1010
uses: julia-actions/setup-julia@v1
1111
with:
12-
version: 1.9
12+
version: 1.10
1313
- name: Install Julia requirements
1414
run: julia --project=${GITHUB_WORKSPACE}/.formatting -e 'import Pkg; Pkg.instantiate()'
1515
- name: Check code style

Project.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,16 @@ uuid = "592a752d-6533-4762-a71b-738712ea30ec"
33
authors = ["Uwe Hernandez Acosta <[email protected]"]
44
version = "0.0.1-DEV"
55

6+
[deps]
7+
68
[compat]
79
julia = "1.6"
810

911
[extras]
12+
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
13+
SafeTestsets = "1bc83da4-3b8d-516f-aca4-4fe02f6d838f"
1014
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1115

1216
[targets]
13-
test = ["Test"]
17+
test = ["Test", "Random","SafeTestsets"]
18+

src/FourMomentumBase.jl

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
module FourMomentumBase
22

3-
# Write your package code here.
3+
export coordinate_system, coordinate_names
4+
5+
include("interface.jl")
6+
include("coordinate_systems/exyz.jl")
47

58
end

0 commit comments

Comments
 (0)