Skip to content

Commit 1431bf1

Browse files
committed
force python 3 in setup
1 parent da19058 commit 1431bf1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
strategy:
1010
matrix:
11-
python-version: [3.7, 3.8, 3.9]
11+
python-version: [3.6, 3.7, 3.8, 3.9]
1212

1313
steps:
1414
- uses: actions/checkout@v2

setup.py

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

1212
setup(
1313
name="pyx12",
14-
version="3.0.0rc1",
14+
python_requires='>=3.6',
15+
version="3.0.0rc2",
1516
long_description=LONG_DESCRIPTION,
1617
license='BSD',
1718
description="HIPAA X12 validator, parser and converter",

0 commit comments

Comments
 (0)