Skip to content

Commit

Permalink
py36 is no more
Browse files Browse the repository at this point in the history
  • Loading branch information
vovaf709 committed Jun 5, 2024
1 parent 45f89ec commit 4481094
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
python-version: [ '3.6', '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']
python-version: [ '3.7', '3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -50,7 +50,6 @@ jobs:
isort --check .
black --check .
- name: Check Cython code style
if: matrix.python-version != '3.6'
run: |
pip install cython-lint
cython-lint imops/src
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ name = 'imops'
dynamic = ['version']
description = 'Efficient parallelizable algorithms for multidimensional arrays to speed up your data pipelines'
readme = 'README.md'
requires-python = '>=3.6'
requires-python = '>=3.7'
license = { file = 'LICENSE' }
keywords = ['image processing', 'fast', 'ndarray', 'data pipelines']
authors = [
Expand All @@ -19,7 +19,6 @@ authors = [
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
classifiers = [
'Development Status :: 5 - Production/Stable',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
Expand Down Expand Up @@ -56,5 +55,5 @@
'Cython<3.0.0',
],
ext_modules=ext_modules,
python_requires='>=3.6',
python_requires='>=3.7',
)

0 comments on commit 4481094

Please sign in to comment.