Skip to content

Commit 3111f2d

Browse files
committed
Test on py36
1 parent c52dbb8 commit 3111f2d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
strategy:
1414
fail-fast: false
1515
matrix:
16-
python-version: [ 3.7 , 3.9 ]
16+
python-version: [ 3.6, 3.7, 3.9, 3.10]
1717

1818
steps:
1919
- uses: actions/checkout@v2

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ install_requires =
4242
typing_extensions;python_version<'3.8'
4343
typing_compat;python_version<'3.8'
4444

45-
python_requires = >=3.7
45+
python_requires = >=3.6
4646
include_package_data = True
4747
package_dir =
4848
=src

src/modelspec/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.2.3"
1+
__version__ = "0.2.4"
22

33
from .base_types import Base, define, has, field, fields, optional, instance_of, in_
44

0 commit comments

Comments
 (0)