Skip to content

Commit

Permalink
Drop Python 3.6 support (#74)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshKarpel committed Apr 13, 2022
1 parent a411ede commit ddd7e33
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 27 deletions.
3 changes: 1 addition & 2 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ updates:
directory: "/"
schedule:
interval: weekly
time: "11:00"
open-pull-requests-limit: 10
open-pull-requests-limit: 1
assignees:
- JoshKarpel
labels:
Expand Down
15 changes: 0 additions & 15 deletions .github/workflows/pre-commit.yml

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: publish-to-pypi
name: publish

on:
release:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
fail-fast: false
matrix:
platform: [ubuntu-latest, windows-latest, macos-latest]
python-version: [3.6, 3.7, 3.8]
python-version: ["3.7", "3.8", "3.9", "3.10"]

runs-on: ${{ matrix.platform }}

Expand Down
14 changes: 6 additions & 8 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ classifiers =
Operating System :: OS Independent
Programming Language :: Python :: 3
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Expand All @@ -32,7 +31,7 @@ install_requires =
numpy>=1.18
scipy>=1.4
importlib-metadata>=1.0;python_version < "3.8"
python_requires = >=3.6
python_requires = >=3.7

[options.extras_require]
docs =
Expand All @@ -41,12 +40,11 @@ docs =
sphinx-issues
sphinx-rtd-theme
tests =
coverage
hypothesis
pre-commit
pytest>=6
pytest-cov
pytest-mock
coverage>=6
hypothesis>=5.41
pytest>=7.1
pytest-cov>=3
pytest-mock>=3

[bdist_wheel]
universal = 1

0 comments on commit ddd7e33

Please sign in to comment.