Skip to content

Commit

Permalink
Merge pull request #17 from rdeits/rd/project
Browse files Browse the repository at this point in the history
add Project.toml
  • Loading branch information
rdeits authored May 12, 2020
2 parents e7a661f + d40dd97 commit 51e49e9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ os:
julia:
- 0.7
- 1.0
- 1.4
- nightly
notifications:
email: false
Expand All @@ -18,4 +19,4 @@ matrix:
- julia: nightly

after_success:
- julia -e 'cd(Pkg.dir("CommonSubexpressions")); Pkg.add("Coverage"); using Coverage; Codecov.submit(process_folder())'
- julia -e 'import Pkg; Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
8 changes: 8 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
name = "CommonSubexpressions"
uuid = "bbf7d656-a473-5ed7-a52c-81e309532950"

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

[compat]
julia = "0.7, 1"
1 change: 0 additions & 1 deletion REQUIRE

This file was deleted.

2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# CommonSubexpressions.jl

[![Build Status](https://travis-ci.org/rdeits/CommonSubexpressions.jl.svg?branch=master)](https://travis-ci.org/rdeits/CommonSubexpressions.jl)
[![Build Status](https://travis-ci.com/rdeits/CommonSubexpressions.jl.svg?branch=master)](https://travis-ci.com/rdeits/CommonSubexpressions.jl)
[![codecov.io](https://codecov.io/github/rdeits/CommonSubexpressions.jl/coverage.svg?branch=master)](https://codecov.io/github/rdeits/CommonSubexpressions.jl?branch=master)

This Julia package provides the `@cse` macro, which performs common subexpression elimination. That means that, given a piece of code like:
Expand Down

0 comments on commit 51e49e9

Please sign in to comment.