Skip to content

Commit

Permalink
fixed REDUCE precompilation
Browse files Browse the repository at this point in the history
  • Loading branch information
chakravala committed Feb 16, 2024
1 parent b115c3e commit 2794002
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
11 changes: 3 additions & 8 deletions appveyor.yml → .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,9 @@
environment:
matrix:
- julia_version: 1.0
PYTHONDIR: "use_conda"
PYTHON: "use_conda"
- julia_version: 1.1
PYTHONDIR: "use_conda"
PYTHON: "use_conda"
- julia_version: 1
- julia_version: 1.6
- julia_version: 1.10
- julia_version: nightly
PYTHONDIR: "use_conda"
PYTHON: "use_conda"

platform:
- x86 # 32-bit
Expand Down
8 changes: 8 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,20 @@
name = "Wilkinson"
uuid = "74aeefec-6ade-5337-bbc5-48a18adb804f"
authors = ["Michael Reed"]
version = "0.1.1"

[deps]
SyntaxTree = "a4af3ec5-f8ac-5fed-a759-c2e80b4d74cb"
Reduce = "93e0c654-6965-5f22-aba9-9c1ae6b3c259"
PyPlot = "d330b81b-6aea-500a-939a-2ce795aea3ee"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"

[compat]
julia = "1"
PyPlot = "2"
Reduce = "1.2.13"
SyntaxTree = "1"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

Expand Down
2 changes: 2 additions & 0 deletions src/Wilkinson.jl
Original file line number Diff line number Diff line change
Expand Up @@ -108,4 +108,6 @@ abstract type NumericalData end

include("polynomial.jl")

Reduce.stop()

end # module

2 comments on commit 2794002

@chakravala
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request updated: JuliaRegistries/General/101024

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.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

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:

git tag -a v0.1.1 -m "<description of version>" 2794002a2e09b2818a9a1b511e5d284182415456
git push origin v0.1.1

Please sign in to comment.