Skip to content

Commit

Permalink
fixed #37 Algebra.factor method issue
Browse files Browse the repository at this point in the history
  • Loading branch information
chakravala committed May 9, 2020
1 parent a9943ce commit 1bb3887
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Reduce"
uuid = "93e0c654-6965-5f22-aba9-9c1ae6b3c259"
authors = ["Michael Reed"]
version = "1.2.5"
version = "1.2.6"

[deps]
REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
Expand Down
8 changes: 5 additions & 3 deletions deps/svn.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,23 @@

rpsl = "redcsl"

ρ = (!Sys.iswindows() && occursin("32",read(`uname -m`,String))) ? 3 : 4
ρ = 5

date = Dict(
0 => "2017-05-16",
1 => "2018-01-17",
2 => "2018-04-06",
3 => "2019-04-13",
4 => "2019-09-15")
4 => "2019-09-15",
5 => "2020-03-01")

rsvn = Dict(
0 => "4052",
1 => "4372",
2 => "4567",
3 => "4961",
4 => "5129")
4 => "5129",
5 => "5286")

function _spawn(cmd, input=devnull, output=devnull)
run(pipeline(cmd, stdin=input, stdout=output, stderr=stderr), wait=false)
Expand Down
1 change: 0 additions & 1 deletion src/args.jl
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ const calculus = [
:totaldeg,
:pochhammer,
:fibonaccip,
:factor,
:remfac,
:gcd,
:lcm,
Expand Down

2 comments on commit 1bb3887

@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 created: JuliaRegistries/General/14476

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 v1.2.6 -m "<description of version>" 1bb3887ffe5ecdc9776c9e1f355a482ad49f4e95
git push origin v1.2.6

Please sign in to comment.