Skip to content

Commit

Permalink
⬆️ remove dacite dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
jgunstone committed Apr 14, 2023
1 parent cc4f7e2 commit d370ed7
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 5 deletions.
1 change: 0 additions & 1 deletion conda.recipe/meta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ requirements:
- pandas
- dataclasses
- typing
- dacite
- xlsxwriter
# dependencies are defined in setup.py
# {% for dep in data['install_requires'] %}
Expand Down
2 changes: 1 addition & 1 deletion install_dev.sh
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@

mamba create -n xlsxtemplater_dev -c conda-forge python numpy pandas dataclasses typing dacite xlsxwriter
mamba create -n xlsxtemplater_dev -c conda-forge python numpy pandas dataclasses typing xlsxwriter
3 changes: 1 addition & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,4 @@ pandas
xlsxwriter
click
dataclasses
typing
dacite
typing
1 change: 0 additions & 1 deletion src/xlsxtemplater/templaterdefs.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
from dataclasses import dataclass, asdict, field
from typing import Optional, List, Dict, Callable
from dacite import from_dict # TODO: remove requirement for dacite
import pandas as pd
import xlsxwriter as xw

Expand Down

0 comments on commit d370ed7

Please sign in to comment.