-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update compat; standardize yml; use Type not DataType; to v0.18 (#133)
* Update compat * Standardize yml * Standardize make.jl * Use Type not DataType * Use Type not DataType * Use Type not DataType * Fix typos
- Loading branch information
1 parent
42869f2
commit 8e9e77a
Showing
24 changed files
with
166 additions
and
81 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
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,13 @@ | ||
name: Spell Check | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
typos-check: | ||
name: Spell Check with Typos | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout Actions Repository | ||
uses: actions/checkout@v4 | ||
- name: Check spelling | ||
uses: crate-ci/typos@master |
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,28 @@ | ||
# https://juliadocs.github.io/Documenter.jl/stable/man/hosting/#gh-pages-Branch | ||
|
||
name: DocPreviewCleanup | ||
|
||
on: | ||
pull_request: | ||
types: [closed] | ||
|
||
jobs: | ||
doc-preview-cleanup: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout gh-pages branch | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: gh-pages | ||
- name: Delete preview and history + push changes | ||
run: | | ||
if [ -d "previews/PR$PRNUM" ]; then | ||
git config user.name "Documenter.jl" | ||
git config user.email "[email protected]" | ||
git rm -rf "previews/PR$PRNUM" | ||
git commit -m "delete preview" | ||
git branch gh-pages-new $(echo "delete history" | git commit-tree HEAD^{tree}) | ||
git push --force origin gh-pages-new:gh-pages | ||
fi | ||
env: | ||
PRNUM: ${{ github.event.number }} |
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,7 +1,7 @@ | ||
name = "MIRT" | ||
uuid = "7035ae7a-3787-11e9-139a-5545ed3dc201" | ||
authors = ["fessler <[email protected]>"] | ||
version = "0.17.0" | ||
version = "0.18" | ||
|
||
[deps] | ||
AVSfldIO = "b6189060-daf9-4c28-845a-cc0984b81781" | ||
|
@@ -25,14 +25,14 @@ Wavelets = "29a6e085-ba6d-5f35-a997-948ac2efa89a" | |
[compat] | ||
AVSfldIO = "0.2" | ||
FFTW = "1" | ||
FileIO = "1.9, 1.14" | ||
FillArrays = "0.12, 0.13" | ||
ImageFiltering = "0.6, 0.7" | ||
ImageTransformations = "0.8, 0.9" | ||
Interpolations = "0.12, 0.13, 0.14" | ||
LazyGrids = "0.5" | ||
LinearMapsAA = "0.11" | ||
FileIO = "1" | ||
FillArrays = "1" | ||
ImageFiltering = "0.7" | ||
ImageTransformations = "0.10" | ||
Interpolations = "0.15" | ||
LazyGrids = "1" | ||
LinearMapsAA = "0.12" | ||
NFFT = "0.13" | ||
SpecialFunctions = "1, 2" | ||
Wavelets = "0.9" | ||
julia = "1.8" | ||
SpecialFunctions = "2" | ||
Wavelets = "0.10" | ||
julia = "1.10" |
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,9 @@ | ||
[default] | ||
extend-ignore-identifiers-re = [ | ||
"allk", | ||
"als", | ||
"Nd", | ||
"iy", | ||
"pn", | ||
"MIRTio", | ||
] |
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,17 +1,22 @@ | ||
* Install Julia (1.5 or later recommended) from https://julialang.org/ | ||
* Explore the extensive documentation at https://docs.julialang.org/ | ||
* Install Julia (1.10 or later recommended) from https://julialang.org | ||
* Explore the extensive documentation at https://docs.julialang.org | ||
* Launch Julia and use the `]` key to enter its package manager. | ||
* Add any packages needed for these notebooks using the `add` command. | ||
* For example `add Plots` to add the `Plots` package. | ||
* Other crucial standard packages are `FFTW` `FFTViews` | ||
* You will also need the package `IJulia` to run any Jupyter demo notebooks. | ||
* Add MIRT by typing `add MIRT` | ||
(Automatically loads from https://github.com/JeffFessler/MIRT.jl because MIRT.jl is a registered package.) | ||
(Automatically loads from https://github.com/JeffFessler/MIRT.jl | ||
because MIRT.jl is a registered package.) | ||
* Type `precompile` to have Julia precompile the added packages. | ||
* After you are done adding packages, press the backspace key to return to the REPL prompt. | ||
* Later if you need to add more packages just type the `]` key again at the REPL prompt to enter the package manager. | ||
* Julia is under active development so code is updated frequently. It is a wise to type `up` (short for `update`) at the package manager prompt every week or so to get automatic updates of any packages you have intalled. | ||
* After you are done adding packages, press the backspace key | ||
to return to the REPL prompt. | ||
* Later if you need to add more packages just type the `]` key again | ||
at the REPL prompt to enter the package manager. | ||
* Julia is under active development so code is updated frequently. | ||
It is a wise to type `up` (short for `update`) at the package manager prompt | ||
every week or so to get automatic updates of any packages you have installed. | ||
* For some Julia tutorials see | ||
http://web.eecs.umich.edu/~fessler/course/551/julia/tutor/ | ||
http://web.eecs.umich.edu/~fessler/course/551/julia/tutor | ||
* For some signal processing demos in Julia see | ||
http://web.eecs.umich.edu/~fessler/course/551/julia/demo/ | ||
http://web.eecs.umich.edu/~fessler/course/551/julia/demo |
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
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
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
Oops, something went wrong.
8e9e77a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JuliaRegistrator() register
8e9e77a
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Registration pull request created: JuliaRegistries/General/107119
Tip: Release Notes
Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.
To add them here just re-invoke and the PR will be updated.
Tagging
After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.
This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via: