Skip to content

Commit

Permalink
Merge pull request #83 from lisc-tools/t11
Browse files Browse the repository at this point in the history
[MNT] - Update to support 3.11 / drop 3.6 support
  • Loading branch information
TomDonoghue authored Jul 5, 2023
2 parents 6ca0d1b + d78c18d commit bff3009
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,12 @@ on:
jobs:
build:

# Tag ubuntu version to 20.04, in order to support python 3.6
# See issue: https://github.com/actions/setup-python/issues/544
# When ready to drop 3.6, can revert from 'ubuntu-20.04' -> 'ubuntu-latest'
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
env:
MODULE_NAME: lisc
strategy:
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
# Because this repo launches requests, limit to one concurrent job at a time
max-parallel: 1

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ For a curated list of projects that use LISC check out the `projects <https://gi
Dependencies
------------

LISC is written in Python 3, and requires Python >= 3.6 to run.
LISC is written in Python 3, and requires Python >= 3.7 to run.

Requirements:

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
],
platforms = 'any',
keywords = ['web-scraping', 'meta-analysis', 'text-mining', 'scientific-publications',
Expand Down

0 comments on commit bff3009

Please sign in to comment.