Skip to content

Commit

Permalink
Pandas added to the required packages to install in setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Marcraven committed Apr 30, 2024
1 parent 2c1af48 commit d3143a2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,6 @@
"dill",
"xfab",
"netcdf4",
"h5py"]
"h5py",
"pandas"]
)
5 changes: 3 additions & 2 deletions xrd_simulator/polycrystal.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,16 @@
Below follows a detailed description of the polycrystal class attributes and functions.
"""
import copy
from multiprocessing import Pool
import numpy as np
import pandas as pd
import dill
import copy
from scipy.spatial import ConvexHull
from xfab import tools
from xrd_simulator.scattering_unit import ScatteringUnit
from xrd_simulator import utils, laue
from multiprocessing import Pool


def _diffract(dict):

Expand Down

0 comments on commit d3143a2

Please sign in to comment.