Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
matrix:
os: [ ubuntu-latest ]
python-version: [ "3.7" ]
python-version: [ "3.9", "3.13" ]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
5 changes: 3 additions & 2 deletions depmap_analysis/util/aws.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,17 @@
from typing import Union, Tuple, Any, Dict, Optional
from operator import itemgetter

from indra.config import get_config
from indra.util.aws import get_s3_file_tree, get_s3_client
from indra_db.cli.dump import Sif, StatementHashMeshId

dumpers = [Sif]

logger = logging.getLogger(__name__)

DUMPS_BUCKET = 'bigmech'
DUMPS_BUCKET = get_config("DUMPS_BUCKET") or 'bigmech'
DUMPS_PREFIX = 'indra-db/dumps/'
NET_BUCKET = 'depmap-analysis'
NET_BUCKET = get_config("NET_BUCKET") or 'depmap-analysis'
NETS_PREFIX = 'graphs/'


Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ install_requires =
matplotlib

include_package_data = True
python_requires = >=3.7
python_requires = >=3.9

[options.extras_require]
tests =
Expand Down
Loading