Skip to content

Commit cbc6bc0

Browse files
committed
Python 3.9 support
1 parent d900971 commit cbc6bc0

File tree

4 files changed

+15
-2
lines changed

4 files changed

+15
-2
lines changed

.manylinux-install.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ for PYBIN in /opt/python/*/bin; do
99
[[ "${PYBIN}" == *"cp35"* ]] || \
1010
[[ "${PYBIN}" == *"cp36"* ]] || \
1111
[[ "${PYBIN}" == *"cp37"* ]] || \
12-
[[ "${PYBIN}" == *"cp38"* ]];
12+
[[ "${PYBIN}" == *"cp38"* ]] || \
13+
[[ "${PYBIN}" == *"cp39"* ]];
1314
then
1415
"${PYBIN}/pip" install tox
1516
"${PYBIN}/pip" install -U cython
@@ -31,7 +32,8 @@ for PYBIN in /opt/python/*/bin; do
3132
[[ "${PYBIN}" == *"cp35"* ]] || \
3233
[[ "${PYBIN}" == *"cp36"* ]] || \
3334
[[ "${PYBIN}" == *"cp37"* ]] || \
34-
[[ "${PYBIN}" == *"cp38"* ]];
35+
[[ "${PYBIN}" == *"cp38"* ]] || \
36+
[[ "${PYBIN}" == *"cp39"* ]];
3537
then
3638
"${PYBIN}/pip" uninstall -y python-crfsuite
3739
"${PYBIN}/pip" install python-crfsuite --no-index -f /io/wheelhouse

.travis.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
language: python
22
matrix:
33
include:
4+
- os: linux
5+
python: 3.9
6+
env: TOXENV=py39
47
- os: linux
58
python: 3.8
69
env: TOXENV=py38
@@ -16,6 +19,11 @@ matrix:
1619
- os: linux
1720
python: 2.7
1821
env: TOXENV=py27
22+
- os: osx
23+
language: generic
24+
env:
25+
- PYTHON='3.9.0'
26+
- TOXENV=py39
1927
- os: osx
2028
language: generic
2129
env:

appveyor.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ environment:
1414
- python : 37-x64
1515
- python : 38
1616
- python : 38-x64
17+
- python : 39
18+
- python : 39-x64
1719

1820
install:
1921
- "SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ def c_compile(obj, src, ext, cc_args, extra_postargs, pp_opts):
7272
"Programming Language :: Python :: 3.6",
7373
"Programming Language :: Python :: 3.7",
7474
"Programming Language :: Python :: 3.8",
75+
"Programming Language :: Python :: 3.9",
7576
"Topic :: Software Development",
7677
"Topic :: Software Development :: Libraries :: Python Modules",
7778
"Topic :: Scientific/Engineering",

0 commit comments

Comments
 (0)