Skip to content

Commit

Permalink
Test with julia v1.8 (#24)
Browse files Browse the repository at this point in the history
* All tests are OK

* Update CI

* Test only on v1.8

* Test only on macOS

* Add data folder for CI tests

* Add more CI tests
  • Loading branch information
vnegi10 authored Mar 5, 2023
1 parent d62e6c6 commit 88934c5
Show file tree
Hide file tree
Showing 18 changed files with 18,496 additions and 9 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ jobs:
fail-fast: false
matrix:
version:
- '1.8'
- '1.7'
- '1.6'
os:
- ubuntu-latest
- macOS-latest
Expand Down Expand Up @@ -67,5 +69,5 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
- uses: julia-actions/julia-processcoverage@latest
- uses: codecov/codecov-action@v3
3 changes: 1 addition & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
.vscode
Manifest.toml
data/
Manifest.toml
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "CryptoDashApp"
uuid = "8f55a569-a1ee-45d2-b761-b2b316ddd8e9"
authors = ["Vikas Negi <vikas.negi10@gmail.com>"]
version = "0.4.3"
version = "0.4.4"

[deps]
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
Expand Down Expand Up @@ -29,4 +29,4 @@ HTTP = "0.9"
JSON = "0.21"
PlotlyJS = "0.15"
StatsBase = "0.33"
julia = "~1.6, ~1.7"
julia = "1.6"
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,6 @@ Functionality of the app will be extended in the future by adding more technical

## How to use?

**Currently not compatible with Julia 1.8 due to issues with its dependencies.**

This package is available via the General registry. Add it to your working Julia environment by
doing the following in the REPL:
* Press ']' to enter Pkg prompt
Expand Down
1,001 changes: 1,001 additions & 0 deletions data/ADA_EUR_data_2023-03-05.csv

Large diffs are not rendered by default.

1,001 changes: 1,001 additions & 0 deletions data/BTC_EUR_data_2023-03-05.csv

Large diffs are not rendered by default.

931 changes: 931 additions & 0 deletions data/DOT_EUR_data_2023-03-05.csv

Large diffs are not rendered by default.

1,001 changes: 1,001 additions & 0 deletions data/ETC_EUR_data_2023-03-05.csv

Large diffs are not rendered by default.

1,001 changes: 1,001 additions & 0 deletions data/ETH_EUR_data_2023-03-05.csv

Large diffs are not rendered by default.

1,001 changes: 1,001 additions & 0 deletions data/LINK_EUR_data_2023-03-05.csv

Large diffs are not rendered by default.

Loading

2 comments on commit 88934c5

@vnegi10
Copy link
Owner Author

@vnegi10 vnegi10 commented on 88934c5 Mar 5, 2023

Choose a reason for hiding this comment

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

@JuliaRegistrator register

Release notes:

  • Support for Julia v1.8
  • Removed dep. on AlphaVantage.jl, Query.jl
  • Fixed failing tests
  • Extended CI

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

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

git tag -a v0.4.4 -m "<description of version>" 88934c5571f8338f8419eec542e84f7612a53c56
git push origin v0.4.4

Also, note the warning: Version 0.4.4 skips over 0.4.0
This can be safely ignored. However, if you want to fix this you can do so. Call register() again after making the fix. This will update the Pull request.

Please sign in to comment.