Skip to content

Commit d61e4de

Browse files
relax version requirements for datasets python package (#30)
* relax updates * cleanup
1 parent 4ff07b0 commit d61e4de

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "HuggingFaceDatasets"
22
uuid = "d94b9a45-fdf5-4270-b024-5cbb9ef7117d"
33
authors = ["Carlo Lucibello"]
4-
version = "0.3.3"
4+
version = "0.3.4"
55

66
[deps]
77
CondaPkg = "992eb4ea-22a4-4c89-a5bb-47a3300528ab"

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)