Skip to content

Commit c564ee2

Browse files
relax updates
1 parent 4ff07b0 commit c564ee2

File tree

5 files changed

+7
-4
lines changed

5 files changed

+7
-4
lines changed

.github/workflows/CI.yml

-1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,5 @@ jobs:
5757
env:
5858
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5959
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
60-
JULIA_CONDAPKG_OPENSSL_VERSION: "ignore"
6160

6261

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ Manifest.toml
66
.CondaPkg
77
.vscode
88
.ipynb_checkpoints
9+
LocalPreferences.toml

CondaPkg.toml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1+
channels = ["conda-forge"]
2+
13
[deps]
2-
datasets = ">=3.0, <4"
3-
numpy = ">=2.0, <3"
4+
datasets = ">=2.0, <4"
5+
numpy = ""
46
pillow = ""
57

Project.toml

+2
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,15 @@ CondaPkg = "992eb4ea-22a4-4c89-a5bb-47a3300528ab"
88
DLPack = "53c2dc0f-f7d5-43fd-8906-6c0220547083"
99
ImageCore = "a09fc81d-aa75-5fe9-8630-4744c3626534"
1010
MLUtils = "f1d291b0-491e-4a28-83b9-f70985020b54"
11+
Preferences = "21216c6a-2e73-6563-6e65-726566657250"
1112
PythonCall = "6099a3de-0909-46bc-b1f4-468b9a2dfc0d"
1213

1314
[compat]
1415
CondaPkg = "0.2"
1516
DLPack = "0.3"
1617
ImageCore = "0.9, 0.10"
1718
MLUtils = "0.4.1"
19+
Preferences = "1.4.3"
1820
PythonCall = "0.9"
1921
julia = "1.9"
2022

src/HuggingFaceDatasets.jl

-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ include("load_dataset.jl")
3737
export load_dataset
3838

3939
function __init__()
40-
ENV["JULIA_CONDAPKG_OPENSSL_VERSION"] = "ignore"
4140
# Since it is illegal in PythonCall to import a python module in a module, we need to do this here.
4241
# https://juliapy.github.io/PythonCall.jl/dev/pythoncall-reference/#PythonCall.Core.pycopy!
4342
PythonCall.pycopy!(datasets, pyimport("datasets"))

0 commit comments

Comments
 (0)