Skip to content

Commit ce6d3b3

Browse files
authored
Allow installation for python 3.6 (#51)
1 parent 59d87d0 commit ce6d3b3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/code.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
fail-fast: false
2828
matrix:
2929
os: [ubuntu-latest, windows-latest, macos-latest]
30-
python: [cp27, cp37, cp38, cp39]
30+
python: [cp27, cp36, cp37, cp38, cp39]
3131

3232
exclude:
3333
# No cothread or asyncio for windows python 2.7 so doesn't work

setup.cfg

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ classifiers =
1717

1818
[options]
1919
packages = softioc
20-
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*
20+
python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*
2121

2222
[options.entry_points]
2323
# Include a command line script
@@ -36,14 +36,14 @@ softioc =
3636
useful =
3737
cothread
3838
scipy
39-
aioca >=1.1
39+
aioca >=1.3
4040
# Dev and docs dependencies
4141
dev =
4242
pytest-cov
4343
pytest-flake8
4444
sphinx-rtd-theme-github-versions; python_version > "3.0"
4545
pytest-asyncio; python_version > "3.0"
46-
aioca; python_version > "3.0"
46+
aioca >=1.3 ; python_version > "3.0"
4747
cothread; sys_platform != "win32"
4848
p4p
4949

0 commit comments

Comments
 (0)