Skip to content

Commit

Permalink
Merge pull request #84 from usegalaxy-eu/pandas-fix
Browse files Browse the repository at this point in the history
Add support for pandas 2.0 support + lock versions
  • Loading branch information
bgruening authored Aug 29, 2023
2 parents e372158 + e89dcf2 commit da4486a
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
.vscode/launch.json
.secret.yml
build/
ena_upload_cli.egg-info/
ena_upload/__pycache__/
2 changes: 1 addition & 1 deletion ena_upload/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.6.2"
__version__ = "0.6.3"
2 changes: 1 addition & 1 deletion ena_upload/templates/ENA_template_runs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def attributetest(row, column):
xmlns:xi="http://www.w3.org/2001/XInclude"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="ftp://ftp.sra.ebi.ac.uk/meta/xsd/sra_1_6/SRA.run.xsd">
<py:for each="alias, experiment_alias in run_groups.iteritems()">
<py:for each="alias, experiment_alias in run_groups.items()">
<RUN alias="${alias}" center_name="${center}">
<EXPERIMENT_REF refname="${experiment_alias}"/>
<DATA_BLOCK>
Expand Down
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
genshi
lxml
pandas>=1.2
pyyaml
requests
openpyxl
genshi==0.7.*
lxml>=4.9.3, <= 5.0.0
pandas>=2.0.3 , <= 3.0.0
pyyaml==5.*
requests>=2.31.0 , <= 3.0.0
openpyxl>=3.1.2 , <= 4.0.0

0 comments on commit da4486a

Please # to comment.