Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,5 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
JULIA_CONDAPKG_OPENSSL_VERSION: "ignore"


1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,4 @@ Manifest.toml
.CondaPkg
.vscode
.ipynb_checkpoints
LocalPreferences.toml
6 changes: 4 additions & 2 deletions CondaPkg.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
channels = ["conda-forge"]

[deps]
datasets = ">=3.0, <4"
numpy = ">=2.0, <3"
datasets = ">=2.0, <4"
numpy = ""
pillow = ""

2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "HuggingFaceDatasets"
uuid = "d94b9a45-fdf5-4270-b024-5cbb9ef7117d"
authors = ["Carlo Lucibello"]
version = "0.3.3"
version = "0.3.4"

[deps]
CondaPkg = "992eb4ea-22a4-4c89-a5bb-47a3300528ab"
Expand Down
1 change: 0 additions & 1 deletion src/HuggingFaceDatasets.jl
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ include("load_dataset.jl")
export load_dataset

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