Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for pandas 2.0 support + lock versions #84

Merged
merged 7 commits into from
Aug 29, 2023
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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/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
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bgruening something like this?

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
Loading