Skip to content

Commit

Permalink
Merge pull request #24 from UAL-RE/enhancement/23_upgrade_to_Python3.9
Browse files Browse the repository at this point in the history
Issue 23. upgrade to Python 3.9
  • Loading branch information
zoidy committed Jun 29, 2022
2 parents 1f53f82 + 955e2a4 commit db429bb
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python 3.7
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.7
python-version: 3.9
- name: Install PyPI dependencies
run: |
python -m pip install --user --upgrade setuptools wheel
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
if: "!contains(github.event.head_commit.message, 'docs only')"
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9']
python-version: ['3.8', '3.9']

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
pandas==1.2.3
tabulate==0.8.3
pandas==1.4.3
tabulate==0.8.10
requests==2.25.1

7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,16 @@
'Tracker': 'https://github.com/UAL-RE/redata-commons/issues',
},
license='MIT License',
author='Chun Ly',
author_email='astro.chun@gmail.com',
author='Yan Han',
author_email='yhan818@gmail.com',
description='Commons code used by ReDATA software',
long_description=long_description,
long_description_content_type='text/markdown',
python_requires='>=3.7',
python_requires='>=3.8',
install_requires=requirements,
classifiers=[
'Development Status :: 4 - Beta',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9'
]
Expand Down

0 comments on commit db429bb

Please sign in to comment.