Skip to content

Commit

Permalink
Drop support for Python 3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
ezwelty committed Apr 17, 2024
1 parent 147955d commit 54dfda4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
python-version: ['3.6', '3.7', '3.8']
python-version: ['3.7', '3.8']
fail-fast: false
runs-on: ${{ matrix.os }}
name: ${{ matrix.os }} - python ${{ matrix.python-version }}
Expand Down
5 changes: 2 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ classifiers = [
"Intended Audience :: Science/Research",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: GIS",
"Topic :: Multimedia :: Graphics :: 3D Rendering",
Expand All @@ -22,7 +22,7 @@ classifiers = [
packages = [{ include = "glimpse", from = "src" }]

[tool.poetry.dependencies]
python = "^3.6.1"
python = "^3.7.0"
numpy = "^1.18.5"
lmfit = "^1.0.1"
piexif = "^1.1.3"
Expand All @@ -33,7 +33,6 @@ GDAL = "3.2.0"
typing_extensions = "^3.7.4"
scipy = "^1.4.1"
opencv-python-headless = "^4.4.0,<=4.8.1.78"
future-annotations = {version = "^1.0.0", python = "<3.7"}

[tool.poetry.group.dev.dependencies]
pytest = "^6.0"
Expand Down

0 comments on commit 54dfda4

Please sign in to comment.