Skip to content

Commit 2d04e84

Browse files
authored
Relax minimal supported Python to 3.7 (#77)
* Relax minimal supported Python to 3.7 * fix * Fix
1 parent 5faa935 commit 2d04e84

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
(github.event_name == 'pull_request_target' && github.actor == 'dependabot[bot]')
2020
strategy:
2121
matrix:
22-
py_version: ['3.9', '3.10']
22+
py_version: ['3.7', '3.8', '3.9', '3.10']
2323
steps:
2424
- name: Checkout commit
2525
uses: actions/checkout@v2

.pre-commit-config.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,19 +8,19 @@ repos:
88
rev: v1.3.0
99
hooks:
1010
- id: yesqa
11-
- repo: https://github.com/sondrelg/pep585-upgrade
12-
rev: v1.0.1
13-
hooks:
14-
- id: upgrade-type-hints
15-
args:
16-
- --futures=true
11+
# - repo: https://github.com/sondrelg/pep585-upgrade
12+
# rev: v1.0.1
13+
# hooks:
14+
# - id: upgrade-type-hints
15+
# args:
16+
# - --futures=true
1717
- repo: https://github.com/Zac-HD/shed
1818
rev: 0.6.0
1919
hooks:
2020
- id: shed
2121
args:
2222
- --refactor
23-
- --py39-plus
23+
- --py37-plus
2424
types_or:
2525
- python
2626
- markdown

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ classifiers =
1111

1212
[options]
1313
zip_safe = False
14-
python_requires = >=3.9
14+
# Required for Neu.ro SDK
15+
python_requires = >=3.7
1516
include_package_data = True
1617
packages = find:
1718
install_requires =

0 commit comments

Comments
 (0)