Skip to content

Commit 367b61c

Browse files
committed
improve dependencies and testing
1 parent 48788ac commit 367b61c

File tree

5 files changed

+37
-68
lines changed

5 files changed

+37
-68
lines changed

.github/workflows/TagBot.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
name: TagBot
22
on:
3-
schedule:
4-
- cron: 49 23 * * *
3+
issue_comment:
4+
types:
5+
- created
6+
workflow_dispatch:
57
jobs:
68
TagBot:
9+
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
710
runs-on: ubuntu-latest
811
steps:
912
- uses: JuliaRegistries/TagBot@v1

.travis.yml

+21-16
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,30 @@
11
language: julia
22
os:
33
- linux
4+
- osx
5+
- windows
46
env:
57
- DATADEPS_ALWAYS_ACCEPT=true
68
julia:
7-
- 1.0
89
- 1.3
10+
- 1
11+
- nightly
12+
matrix:
13+
allow_failures:
14+
- julia: nightly
15+
exclude:
16+
- os: osx
17+
julia: 1.3
18+
- os: windows
19+
julia: 1.3
20+
- os: osx
21+
julia: nightly
22+
- os: windows
23+
julia: nightly
24+
fast_finish: true
25+
branches:
26+
only:
27+
- master
28+
- /release-.*/
929
notifications:
1030
email: false
11-
before_script: julia -e 'VERSION < v"1.3" && rm("Manifest.toml"; force = true)'
12-
jobs:
13-
include:
14-
- stage: "Documentation"
15-
julia: 1.0
16-
os: linux
17-
script:
18-
- julia --project=docs/ -e 'using Pkg;
19-
Pkg.develop(PackageSpec(path=pwd()));
20-
Pkg.instantiate();
21-
Pkg.build();'
22-
- julia --project=docs/ docs/make.jl
23-
after_success: skip
24-
after_success:
25-
- julia -e 'cd(Pkg.dir("TextAnalysis")); Pkg.add("Coverage"); using Coverage; Coveralls.submit(Coveralls.process_folder())';

Artifacts.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ git-tree-sha1 = "b7b8c228827945936e76c895729682d081ac152c"
33

44
[[sentiment_model.download]]
55
sha256 = "5dcb031eccf01bb0b2d074281140679683f73603a54caa79941a1df1c8a6d70d"
6-
url = "https://github.com/JuliaText/TextAnalysis.jl/releases/download/v0.3.0//sentiment.tar.gz"
6+
url = "https://github.com/JuliaText/TextAnalysis.jl/releases/download/v0.3.0/sentiment.tar.gz"

Project.toml

+10-4
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name = "TextModels"
22
uuid = "77b9cbda-2a23-51df-82a3-24144d1cd378"
33
license = "MIT"
44
desc = "Julia package for text analysis"
5-
version = "0.9.0"
5+
version = "0.1.0"
66

77
[deps]
88
BSON = "fbb218c0-5317-5bc6-957e-2ee96dd4b1f0"
@@ -24,9 +24,15 @@ Tracker = "9f7883ad-71c0-57eb-9f7f-b5c9e6d3789c"
2424
WordTokenizers = "796a5d58-b03d-544a-977e-18100b691f6e"
2525

2626
[compat]
27-
BSON = ">= 0.2.5"
28-
Flux = "< 0.10"
29-
TextAnalysis = "0.9"
27+
BSON = "0.2.5"
28+
DataDeps = "0.7"
29+
DataStructures = "0.17, 0.18"
30+
Flux = "0.9"
31+
Languages = "0.4"
32+
NNlib = "0.6, 0.7"
33+
StatsBase = "0.33"
34+
TextAnalysis = "0.7"
35+
WordTokenizers = "0.5"
3036
julia = "1.3"
3137

3238
[extras]

appveyor.yml

-45
This file was deleted.

0 commit comments

Comments
 (0)