Skip to content

Commit

Permalink
Merge pull request #34 from invenia/tl/remove-compat
Browse files Browse the repository at this point in the history
Remove Compat.jl Version Restriction
  • Loading branch information
timmylev committed Jan 12, 2023
2 parents 9b6f932 + 7425a13 commit d1ceada
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 11 deletions.
7 changes: 1 addition & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
version:
- "1.0" # LTS
- "1.6" # LTS
- "1" # Latest Release
os:
- ubuntu-latest
Expand All @@ -30,11 +30,6 @@ jobs:
arch: x86
- os: windows-latest
arch: x86
include:
# Add a 1.5 job because that's what Invenia actually uses
- os: ubuntu-latest
version: 1.5
arch: x64
steps:
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@v1
Expand Down
6 changes: 2 additions & 4 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,9 @@
name = "ObservationDims"
uuid = "bd245535-7a0d-4808-be35-e2fe847ca032"
authors = ["Invenia Technical Computing Corporation"]
version = "0.1.10"
version = "0.1.11"

[deps]
Compat = "34da2185-b29b-5c13-b0c7-acf172513d20"
Distributions = "31c24e10-a181-5473-b8eb-7969acd0382f"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
NamedDims = "356022a1-0364-5f58-8944-0da4b18d706f"
Expand All @@ -13,11 +12,10 @@ Tables = "bd369af6-aec1-5ad0-b16a-f7cc5008161c"

[compat]
AxisArrays = "0.4"
Compat = "2.2, 3"
Distributions = "0.21, 0.22, 0.23, 0.24, 0.25"
NamedDims = "0.2, 0.3, 1"
Tables = "1"
julia = "1"
julia = "1.6"

[extras]
AxisArrays = "39de3d68-74b9-583c-8d2d-e117c070f3a9"
Expand Down
1 change: 0 additions & 1 deletion src/ObservationDims.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
module ObservationDims

using Compat: eachslice, hasproperty
using Distributions
using NamedDims
using Tables
Expand Down

2 comments on commit d1ceada

@timmylev
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/75585

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.1.11 -m "<description of version>" d1ceadac77fb9fc8b76772726335788c706629c1
git push origin v0.1.11

Please sign in to comment.