Skip to content

Commit b8d342d

Browse files
Drop support for 1.6 in favor of 1.10 LTS (#85)
* Drop support for 1.6 in favor of 1.10 LTS * Updated Julia version and FunSQL dependencies * Updated test dependencies * Updated test suite for new compat entries * Disabled failing tests to fix later * Fixed up CI workflows
1 parent 70b165b commit b8d342d

File tree

6 files changed

+594
-18
lines changed

6 files changed

+594
-18
lines changed

.github/workflows/ci.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
name: CI
22
on:
33
- push
4-
- pull_request
54
jobs:
65
test: # Job to run test suite
76
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
@@ -10,7 +9,7 @@ jobs:
109
fail-fast: false
1110
matrix:
1211
version:
13-
- '1.6'
12+
- '1.10'
1413
- '1'
1514
- 'nightly'
1615
os:

Project.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ TimeZones = "f269a46b-ccf7-5d73-abea-4c690281aa53"
1313
[compat]
1414
DBInterface = "2.5"
1515
DataFrames = "1.3"
16-
FunSQL = "0.10, 0.11, 0.12, 0.13"
16+
FunSQL = "0.13, 0.14"
1717
TimeZones = "1.9"
18-
julia = "1.6"
18+
julia = "1.10"

test/Project.toml

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,14 @@ FunSQL = "cf6cc811-59f4-4a10-b258-a8547a8f6407"
66
HealthSampleData = "b8464e9a-ae38-46a4-977b-86f00930f698"
77
JSON3 = "0f8b85d8-7281-11e9-16c2-39a750bddbf1"
88
OHDSICohortExpressions = "b1469e29-13af-4897-a4a9-3c363a260582"
9-
OMOPCDMCohortCreator = "f525a15e-a73f-4eef-870f-f901257eae22"
109
SQLite = "0aa819cd-b072-5ff4-a722-6bc24af294d9"
1110
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1211
TimeZones = "f269a46b-ccf7-5d73-abea-4c690281aa53"
1312

1413
[compat]
1514
DBInterface = "2"
1615
DataFrames = "1"
17-
FunSQL = "0.10"
1816
HealthSampleData = "0"
1917
SQLite = "1"
2018
TimeZones = "1"
21-
julia = "1.7"
19+
julia = "1.10"

0 commit comments

Comments
 (0)