Skip to content

Commit

Permalink
Drop support for Python 3.6 in etstool.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mdickinson committed Jun 27, 2024
1 parent e5a35c9 commit bd1a99d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test-with-edm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu-latest', 'windows-latest']
runtime: ['3.6', '3.8']
runtime: ['3.8']

runs-on: ${{ matrix.os }}
steps:
Expand Down
4 changes: 2 additions & 2 deletions etstool.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
import click

#: Supported Python versions.
SUPPORTED_RUNTIMES = ["3.6", "3.8"]
SUPPORTED_RUNTIMES = ["3.8"]

#: Default Python version to use.
DEFAULT_RUNTIME = "3.8"
Expand All @@ -108,7 +108,7 @@ def edm_dependencies(runtime):
"configobj",
"coverage",
"importlib_resources>=1.1.0",
"pytables" if runtime == "3.6" else "tables",
"tables",
"pandas",
"pyface",
"enthought_sphinx_theme",
Expand Down

0 comments on commit bd1a99d

Please sign in to comment.