diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index d82daca..debe5be 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -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 diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index 56fdd94..0000000 --- a/.travis.yml +++ /dev/null @@ -1,25 +0,0 @@ -os: linux -dist: bionic -language: python -jobs: - include: - - name: Python 3.7 on Bionic - python: 3.7 - -# command to install dependencies -before_install: - - python --version - - pip install -U pip - - pip install -U pytest pytest-cov -install: - - python setup.py develop - -before_script: - - pwd - - export BRANCH=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then echo $TRAVIS_BRANCH; else echo $TRAVIS_PULL_REQUEST_BRANCH; fi) - -script: - - echo $BRANCH - - pytest --cov-report term-missing --cov-config=.coveragerc --cov=requiam_csv tests - - ./requiam_csv/script_run - diff --git a/requirements.txt b/requirements.txt index 4d20fcf..79440ad 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1 +1 @@ -redata>=0.3.0 +redata>=0.5.0 diff --git a/setup.py b/setup.py index 708a89d..11f2d6a 100644 --- a/setup.py +++ b/setup.py @@ -8,12 +8,12 @@ setup( name='requiam_csv', - version='0.12.3', + version='0.13.0', packages=['requiam_csv'], url='https://github.com/UAL-RE/ReQUIAM_csv', license='MIT License', - author='Chun Ly', - author_email='astro.chun@gmail.com', + author='Yan Han', + author_email='yhan818@gmail.com', description='Construct list of research themes and organization mapping to work with figshare patron management', long_description=long_description, long_description_content_type='text/markdown',