Skip to content

Commit

Permalink
Merge pull request #59 from fls-bioinformatics-core/pin-xlsxwriter-to…
Browse files Browse the repository at this point in the history
…-3.1.9

Pin 'xlsxwriter' dependency version to 3.1.9
  • Loading branch information
pjbriggs authored Dec 5, 2023
2 parents bccbeec + f1930fe commit 79d508f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion pegs/outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,8 @@ def make_xlsx_file(xlsx_file,peaks,clusters,distances,pvalues,counts,
for x in clusters]

# Output workbook
xlsx_out = xlsxwriter.Workbook(xlsx_file)
xlsx_out = xlsxwriter.Workbook(xlsx_file,
{'constant_memory': True})

# Make separate sheets for each set of values
ws_common_genes = xlsx_out.add_worksheet("Common Genes")
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ scipy==1.5.4
matplotlib==3.3.4
pillow==8.1.1
seaborn==0.11.1
xlsxwriter >= 0.8.4
xlsxwriter==3.1.9
pathlib2
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
'matplotlib==3.3.4',
'pillow==8.1.1',
'seaborn==0.11.1',
'xlsxwriter >= 0.8.4',
'xlsxwriter==3.1.9',
'pathlib2']

# Acquire package version for installation
Expand Down

0 comments on commit 79d508f

Please sign in to comment.