Skip to content

Commit

Permalink
Switch to Project file from REQUIRE. Fix some paths
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasnoack committed Aug 28, 2019
1 parent 1a95601 commit 9bfce22
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ os:
- osx

julia:
- 0.7
- 1.0
- 1.2
- nightly

matrix:
Expand Down
18 changes: 18 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name = "TSVD"
uuid = "9449cd9e-2762-5aa3-a617-5413e99d722e"
version = "0.4.0"

[deps]
Adapt = "79e6a3ab-5dfb-504d-930d-738a2a938a0e"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"

[compat]
julia = "1"

[extras]
MatrixDepot = "b51810bb-c9f3-55da-ae3c-350fc1fbce05"
SparseArrays = "2f01184e-e22b-5df5-ae63-d93ebab69eaf"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["MatrixDepot", "SparseArrays", "Test"]
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# TSVD - Truncated Singular Value Decomposition

[![Build Status](https://travis-ci.org/andreasnoack/TSVD.jl.svg?branch=master)](https://travis-ci.org/andreasnoack/TSVD.jl)
[![Coverage Status](https://coveralls.io/repos/github/andreasnoack/TSVD.jl/badge.svg?branch=master&bust=1)](https://coveralls.io/github/andreasnoack/TSVD.jl?branch=master)
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://andreasnoack.github.io/TSVD.jl/stable)
[![](https://img.shields.io/badge/docs-latest-blue.svg)](https://andreasnoack.github.io/TSVD.jl/latest)
[![Build Status](https://travis-ci.org/JuliaLinearAlgebra/TSVD.jl.svg?branch=master)](https://travis-ci.org/JuliaLinearAlgebra/TSVD.jl)
[![codecov](https://codecov.io/gh/JuliaLinearAlgebra/TSVD.jl/branch/master/graph/badge.svg)](https://codecov.io/gh/JuliaLinearAlgebra/TSVD.jl)
[![](https://img.shields.io/badge/docs-stable-blue.svg)](https://julialinearalgebra.github.io/TSVD.jl/stable)
[![](https://img.shields.io/badge/docs-latest-blue.svg)](https://julialinearalgebra.github.io/TSVD.jl/latest)

A Julia implementation of the procedure described in

Expand Down
2 changes: 0 additions & 2 deletions REQUIRE

This file was deleted.

1 change: 0 additions & 1 deletion test/REQUIRE

This file was deleted.

2 comments on commit 9bfce22

@andreasnoack
Copy link
Member Author

Choose a reason for hiding this comment

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

@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/3025

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 Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.4.0 -m "<description of version>" 9bfce2271f99c8d855d68051c140501d8a6704f0
git push origin v0.4.0

Please sign in to comment.