Skip to content

Commit 81460c1

Browse files
authored
Merge pull request #111 from angusmoore/anm/pycall-compat
Fix PyCall precompile failure on 1.11: Bump PyCall minimum version to 1.96
2 parents 6578f91 + b2b070a commit 81460c1

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/jlpkgbutler-ci-master-workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
runs-on: ${{ matrix.os }}
1313
strategy:
1414
matrix:
15-
julia-version: ['1.6', '1.7', '1.8', '1.9', '1.10']
15+
julia-version: ['1.6', '1.7', '1.8', '1.9', '1.10', '1.11']
1616
julia-arch: [x64, x86]
1717
os: [ubuntu-latest, windows-latest, macOS-latest]
1818
exclude:
@@ -37,4 +37,4 @@ jobs:
3737
files: ./lcov.info
3838
flags: unittests
3939
token: ${{ secrets.CODECOV_TOKEN }}
40-
40+

.github/workflows/jlpkgbutler-ci-pr-workflow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ${{ matrix.os }}
1010
strategy:
1111
matrix:
12-
julia-version: ['1.6', '1.7', '1.8', '1.9', '1.10']
12+
julia-version: ['1.6', '1.7', '1.8', '1.9', '1.10', '1.11']
1313
julia-arch: [x64, x86]
1414
os: [ubuntu-latest, windows-latest, macOS-latest]
1515
exclude:

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ TestItemRunner = "f8b46487-2199-4994-9208-9a1283c18c0a"
1313
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1414

1515
[compat]
16-
Conda = "1 - 1.8.0"
1716
julia = "1.6"
17+
Conda = "1.9"
1818
DataValues = "0.4.4"
19-
PyCall = "1.90"
19+
PyCall = "1.96"
2020

2121
[targets]
2222
test = ["Test", "TestItemRunner"]

0 commit comments

Comments
 (0)