Skip to content

Commit

Permalink
Merge pull request #56 from neutrinoceros/drop_eol_pythons
Browse files Browse the repository at this point in the history
MNT: drop support for EOL Python versions 3.6 and 3.7
  • Loading branch information
neutrinoceros authored Dec 16, 2023
2 parents 13d69d0 + 5d8fb0f commit 00d38fb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ jobs:
matrix:
architecture: [x86, x64]
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9]
python-version:
- "3.8"
- "3.9"
exclude:
- os: ubuntu-latest
architecture: x86
Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ classifiers = [
"Operating System :: Unix",
"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",
"Topic :: Scientific/Engineering :: Visualization",
Expand All @@ -29,7 +27,7 @@ classifiers = [
]
keywords = ["cmasher perceptually uniform sequential colormaps plotting python visualization"]

requires-python = ">=3.6, <4"
requires-python = ">=3.8, <4"

# keep in sync with requirements.txt
dependencies = [
Expand Down

0 comments on commit 00d38fb

Please sign in to comment.