Skip to content

Commit

Permalink
Add Project.toml; update for Julia 1
Browse files Browse the repository at this point in the history
- Add Project.toml
- Remove support for Julia <= v0.7
- Remove precompile statements
  • Loading branch information
anowacki committed Aug 16, 2019
1 parent 2b3b142 commit 6b4c548
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 14 deletions.
3 changes: 1 addition & 2 deletions .travis.yml
Expand Up @@ -4,9 +4,8 @@ os:
- linux
- osx
julia:
- 0.6
- 0.7
- 1.0
- 1.1
- nightly

notifications:
Expand Down
11 changes: 11 additions & 0 deletions Project.toml
@@ -0,0 +1,11 @@
name = "CircStats"
uuid = "0643c194-c041-11e9-0ba9-f5a9f5a21f3b"
authors = ["Andy Nowacki <a.nowacki@leeds.ac.uk>"]
version = "0.2.0"

[deps]
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"

[compat]
julia = "1"
3 changes: 0 additions & 3 deletions REQUIRE

This file was deleted.

5 changes: 2 additions & 3 deletions appveyor.yml
@@ -1,8 +1,7 @@
environment:
matrix:
- julia_version: 0.6
- julia_version: 0.7
- julia_version: 1
- julia_version: 1.0
- julia_version: 1.1
- julia_version: nightly

platform:
Expand Down
5 changes: 1 addition & 4 deletions src/CircStats.jl
@@ -1,5 +1,3 @@
__precompile__()

"""
module CircStats contains routines for investigating the statistic of circular
data.
Expand All @@ -9,8 +7,7 @@ By default, all input and output from routines is in radians, but in general pas
"""
module CircStats

using Compat
using Compat.Printf
using Printf

import Distributions

Expand Down
2 changes: 0 additions & 2 deletions src/Datasets.jl
@@ -1,5 +1,3 @@
__precompile__()

"""
CircStats.Datasets includes a number of example circular statistical datasets.
"""
Expand Down

0 comments on commit 6b4c548

Please sign in to comment.