Skip to content

Commit

Permalink
Drop support for Julia <1.6 (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
DilumAluthge authored Apr 13, 2021
1 parent 5b405b4 commit 0baac33
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 13 deletions.
13 changes: 2 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,11 @@ jobs:
fail-fast: false
matrix:
version:
- '1.5'
- '1.6'
- '1'
- 'nightly'
os:
- ubuntu-latest
# - macOS-latest
# - windows-latest
arch:
- x64
steps:
Expand All @@ -43,10 +41,7 @@ jobs:
- uses: julia-actions/julia-buildpkg@latest
env:
JULIA_PKG_SERVER: ''
PYTHON: ''
- uses: julia-actions/julia-runtest@latest
env:
PYTHON: ''
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v1
with:
Expand All @@ -61,15 +56,12 @@ jobs:
version: '1'
- env:
JULIA_PKG_SERVER: ''
PYTHON: ''
run: |
julia --project=docs -e '
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()'
- env:
PYTHON: ''
run: |
- run: |
julia --project=docs -e '
using Documenter: doctest
using SossMLJ
Expand All @@ -78,4 +70,3 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
PYTHON: ''
4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "SossMLJ"
uuid = "cf2dc0df-ab57-42da-b773-28c60db69bd5"
authors = ["Chad Scherrer", "Thibaut Lienart", "Dilum Aluthge", "Anthony Blaom", "contributors"]
version = "0.2.0"
version = "0.3.0"

[deps]
CategoricalArrays = "324d7699-5711-5eae-9e2f-1d82baa6b597"
Expand All @@ -27,7 +27,7 @@ NamedTupleTools = "0.13"
RDatasets = "0.6"
Soss = "0.15"
Tables = "1"
julia = "1.5"
julia = "1.6"

[extras]
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Expand Down

2 comments on commit 0baac33

@DilumAluthge
Copy link
Collaborator 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/34204

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

Please sign in to comment.