Skip to content

Commit

Permalink
maint: Drop py36 - not worth the effort
Browse files Browse the repository at this point in the history
  • Loading branch information
nvictus committed Jul 1, 2023
1 parent 5eb20f2 commit e881692
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,11 @@ jobs:
mypy pqdict tests
Test:
runs-on: ubuntu-20.04 # py36 is EOL on ubuntu-latest
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.9"]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "pypy3.9"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand Down
2 changes: 1 addition & 1 deletion CHANGES
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Release Notes
- Added ``default`` argument to ``top`` and support for ``default`` using ``pop`` with PQ semantics, to return when the collection is empty.

* Maintenance:
- Dropped support for Python 2.7, 3.4, and 3.5 (#22).
- Dropped support for Python 2.7, 3.4, 3.5, and 3.6 (#22).
- Inlined type annotations and removed stub file. Thanks for advice from `@aqeelat <https://github.com/aqeelat>_`.
- Migrate to pyproject.toml

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "pqdict"
description = "A Pythonic indexed priority queue."
requires-python = ">=3.6"
requires-python = ">=3.7"
license = {text = "MIT"}
authors = [
{name = "Nezar Abdennur", email = "[email protected]"},
Expand All @@ -23,7 +23,6 @@ classifiers = [
"License :: OSI Approved :: MIT License",
"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",
Expand Down

0 comments on commit e881692

Please sign in to comment.