Skip to content

Commit

Permalink
Drop support for Python 3.6 and 3.7 (both are EOL)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-k committed Aug 16, 2023
1 parent 7327a05 commit cb230ea
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.6
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade "build>=0.3.1" "twine>=3.4.1"
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@ jobs:
fail-fast: false
matrix:
python-version:
- "3.6"
- "3.7"
- "3.8"
- "3.9"
- "3.10"
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
Changelog
=========

unreleased
----------

- Drop support for Python 3.6 and 3.7 (both are EOL)

3.1.0
-----

Expand Down
2 changes: 1 addition & 1 deletion mypy.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ disallow_untyped_calls = True
disallow_untyped_defs = True
follow_imports = silent
ignore_missing_imports = False
python_version = 3.6
python_version = 3.8
strict_optional = True
warn_redundant_casts = True
warn_unused_ignores = True
Expand Down
4 changes: 1 addition & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ classifiers =
Operating System :: OS Independent
License :: OSI Approved :: MIT License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Expand All @@ -33,7 +31,7 @@ project_urls =
packages = find_namespace:
install_requires =
channels >= 3.0
python_requires = >=3.6
python_requires = >=3.8
include_package_data = True
zip_safe = False

Expand Down

0 comments on commit cb230ea

Please sign in to comment.