Skip to content

Commit

Permalink
Merge d298899 into 6b49c30
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasyu888 committed Mar 4, 2021
2 parents 6b49c30 + d298899 commit fb5aa5f
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonapp.yml
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: [3.7, 3.8, 3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
@@ -1,4 +1,4 @@
FROM python:3.6
FROM python:3.8

WORKDIR /root/challengeutils
COPY ./ ./
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
@@ -1,2 +1,2 @@
pandas==1.0.1
synapseclient==2.2.2
pandas==1.2.3
synapseclient==2.3.0
6 changes: 3 additions & 3 deletions setup.py
Expand Up @@ -22,8 +22,8 @@
license='Apache',
packages=find_packages(),
zip_safe=False,
python_requires='>=3.6, <3.9',
python_requires='>3.6, <3.10',
scripts=['bin/runqueue.py'],
entry_points={'console_scripts': ['challengeutils = challengeutils.__main__:main']},
install_requires=['pandas>=1.0.0',
'synapseclient>=2.2.0'])
install_requires=['pandas>=1.2.3',
'synapseclient>=2.3.0'])

0 comments on commit fb5aa5f

Please sign in to comment.