Skip to content

Commit

Permalink
Removing python 3.7 support.
Browse files Browse the repository at this point in the history
Fixes #247.
  • Loading branch information
alxmrs committed Oct 10, 2022
1 parent 0714730 commit 8aa3522
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.7", "3.8", "3.9"]
python-version: ["3.8", "3.9"]
steps:
- name: Cancel previous
uses: styfle/[email protected]
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,13 +105,12 @@
'Operating System :: MacOS :: MacOS X',
# 'Operating System :: Microsoft :: Windows', # TODO(#64): Fully support Windows.
'Operating System :: POSIX',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering :: Atmospheric Science',

],
python_requires='>=3.7, <3.10',
python_requires='>=3.8, <3.10',
install_requires=['apache-beam[gcp]==2.40.0'],
use_scm_version=True,
setup_requires=['setuptools_scm'],
Expand Down
1 change: 0 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,5 @@ max-line-length = 120

[gh-actions]
python =
3.7: py37
3.8: py38, lint, type
3.9: py39

0 comments on commit 8aa3522

Please sign in to comment.