Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump min Python version to 3.6, ideally 3.8+ #171

Merged
merged 2 commits into from
Apr 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8]
python-version: ["3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -39,4 +39,4 @@ jobs:
# remove recordlinkage to prevent relative imports (use installed package)
# this is like wrapping stuff in a src folder
rm -r recordlinkage/
pytest
pytest
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,10 @@ def read(fname):
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only"
],
python_requires=">=3.5",

# Python version in line with pandas' python version support
# https://pandas.pydata.org/docs/getting_started/install.html
python_requires=">=3.6",
install_requires=[
"jellyfish>=0.8.0",
"numpy>=1.13.0",
Expand Down