Skip to content

Commit

Permalink
Merge pull request #15 from DilumAluthge/da/project
Browse files Browse the repository at this point in the history
Add Project.toml, delete REQUIRE, remove dependency on Compat.jl, drop support for Julia 0.7
  • Loading branch information
mbauman authored Dec 30, 2019
2 parents bfe71c9 + 55a40fb commit 0d36eb5
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 13 deletions.
8 changes: 3 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,11 @@ os:
- linux
- osx
julia:
- 0.6
- 0.7
- 1.0
- 1.1
- "1.0"
- "1.3"
- nightly
matrix:
allow_failures:
- julia: nightly
# - julia: nightly
notifications:
email: false
12 changes: 12 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
name = "RangeArrays"
uuid = "b3c3ace0-ae52-54e7-9d0b-2c1406fd6b9d"
version = "0.3.2"

[compat]
julia = "1"

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

[targets]
test = ["Test"]
2 changes: 0 additions & 2 deletions REQUIRE

This file was deleted.

4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
environment:
matrix:
- julia_version: 0.6
- julia_version: 0.7
- julia_version: 1.0
- julia_version: 1.3
- julia_version: latest

platform:
Expand Down
3 changes: 0 additions & 3 deletions src/RangeArrays.jl
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
VERSION < v"0.7.0-rc1" && __precompile__()
module RangeArrays

using Compat

include("matrix.jl")
include("repeatedrange.jl")

Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
using RangeArrays
using Compat.Test
using Test

# Regular RangeMatrix tests

Expand Down

5 comments on commit 0d36eb5

@DilumAluthge
Copy link
Member

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.

Error while trying to register: Register Failed
@DilumAluthge, it looks like you are not a publicly listed member/owner in the parent organization (JuliaArrays).
If you are a member/owner, you will need to change your membership to public. See GitHub Help

@mbauman
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/7337

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.3.2 -m "<description of version>" 0d36eb59e43b254c05b22319a4b7aa39d18c7391
git push origin v0.3.2

@DilumAluthge
Copy link
Member

Choose a reason for hiding this comment

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

Thanks @mbauman!

Please sign in to comment.