Skip to content

Commit

Permalink
Fix it for Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
fealho committed Aug 21, 2024
1 parent 7cbd778 commit 0e87a31
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
1 change: 0 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ dependencies = [
'rdt>=1.12.1',
'sdmetrics>=0.14.1',
'sdv>=1.13.1',
'multiprocess>=0.70.16'
]

[project.urls]
Expand Down
5 changes: 2 additions & 3 deletions sdgym/benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import concurrent
import logging
import multiprocessing
import os
import pickle
import tracemalloc
Expand All @@ -10,6 +11,7 @@
from pathlib import Path

import boto3
import cloudpickle
import compress_pickle
import numpy as np
import pandas as pd
Expand Down Expand Up @@ -42,9 +44,6 @@
get_synthesizers,
used_memory,
)
import multiprocessing
import cloudpickle
import dill

multiprocessing.set_start_method('spawn', force=True)
multiprocessing.reduction.ForkingPickler.dumps = cloudpickle.dumps
Expand Down

0 comments on commit 0e87a31

Please sign in to comment.