Skip to content

Commit

Permalink
Merge branch 'dev' into 58-retry-downloads
Browse files Browse the repository at this point in the history
  • Loading branch information
andylolz committed Mar 6, 2024
2 parents 4dc978e + 325294a commit d7b742c
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 20 deletions.
29 changes: 12 additions & 17 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,42 +6,37 @@ 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@v1
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v2
name: Cache dependencies
with:
path: ~/.cache/pip
key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements_dev.txt') }}
restore-keys: |
${{ runner.os }}-pip-
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements_dev.txt
- name: Run tests
run: pytest
- name: Coveralls
if: matrix.python-version == '3.8'
if: matrix.python-version == '3.9'
run: coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
deploy:
needs: [test]
if: startsWith(github.ref, 'refs/tags')
name: Deploy
runs-on: ubuntu-latest
needs: test
if: startsWith(github.ref, 'refs/tags')
steps:
- uses: actions/checkout@master
- name: Set up Python 3.7
uses: actions/setup-python@v1
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.7
python-version: '3.9'
cache: 'pip'
- name: Install pypa/build
run: >-
python -m
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ The name was inspired by `Open Contracting <https://www.open-contracting.org/>`_
Installation
------------

iatikit is tested for pythons 3.6, 3.7 and 3.8.
iatikit is tested for pythons 3.7 – 3.9.

You can install it using ``pip``:

Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Getting started
Installation
------------

iatikit is tested for pythons 3.6, 3.7 and 3.8.
iatikit is tested for pythons 3.7 – 3.9.

You can install iatikit using ``pip``:

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
],
)

0 comments on commit d7b742c

Please sign in to comment.