We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e833566 commit cc71b69Copy full SHA for cc71b69
.github/workflows/tests.yml
@@ -84,6 +84,12 @@ jobs:
84
uses: actions/setup-python@v6
85
with:
86
python-version: ${{ matrix.pyversion }}
87
+
88
+ - name: Check Python OpenSSL version (see setup_julia)
89
+ shell: python
90
+ run: |
91
+ import ssl
92
+ assert ssl.OPENSSL_VERSION_INFO < (3, 5)
93
94
- name: Set up uv
95
uses: astral-sh/setup-uv@v6
@@ -94,7 +100,9 @@ jobs:
100
id: setup_julia
101
uses: julia-actions/setup-julia@v2
96
102
97
- version: '1'
103
+ # Python in the GitHub runners ships with OpenSSL 3.0. Julia 1.12 requires
104
+ # OpenSSL 3.5. Therefore juliapkg requires Julia 1.11 or lower.
105
+ version: '1.11'
98
106
99
107
- name: Set up test Julia project
108
if: ${{ matrix.juliaexe == 'julia' }}
0 commit comments