Skip to content

Commit

Permalink
[GEN-833] Remove support for python 3.7, pin synapseclient (#534)
Browse files Browse the repository at this point in the history
* remove python 3.7 support, pin synapseclient to <3.0
* update setup-python

---------

Co-authored-by: Rixing Xu <rxu@w197.local>
  • Loading branch information
rxu17 and Rixing Xu authored Sep 12, 2023
1 parent 1513cc2 commit 685beb5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: [3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This repository documents code used to gather, QC, standardize, and analyze data
## Dependencies

This package contains both R, Python and cli tools. These are tools or packages you will need, to be able to reproduce these results:
- Python >3.7 or <3.10
- Python >=3.8 or <3.10
- `pip install -r requirements.txt`
- [bedtools](https://bedtools.readthedocs.io/en/latest/content/installation.html)
- R 4.2.2
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ pandas>=1.0,<1.5.0
pyranges==0.0.115
# known working version 6.0
PyYAML>=5.1
synapseclient>=2.7.0
synapseclient>=2.7.0,<3.0.0
5 changes: 2 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ classifiers =
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Scientific/Engineering
Expand All @@ -30,14 +29,14 @@ project_urls =
[options]
packages = find:
install_requires =
synapseclient>=2.7.0
synapseclient>=2.7.0, <3.0.0
pandas>=1.0,<1.5.0
httplib2>=0.11.3
PyYAML>=5.1
chardet>=3.0.4
pyranges==0.0.115
numpy<=1.22.2
python_requires = >=3.7, <3.10
python_requires = >=3.8, <3.10
include_package_data = True
zip_safe = False
scripts =
Expand Down

0 comments on commit 685beb5

Please sign in to comment.