Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .manylinux-install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ for PYBIN in /opt/python/*/bin; do
if [[ "${PYBIN}" == *"cp27"* ]] || \
[[ "${PYBIN}" == *"cp36"* ]] || \
[[ "${PYBIN}" == *"cp37"* ]] || \
[[ "${PYBIN}" == *"cp38"* ]];
[[ "${PYBIN}" == *"cp38"* ]] || \
[[ "${PYBIN}" == *"cp39"* ]];
[[ "${PYBIN}" == *"cp310"* ]];
then
"${PYBIN}/pip" install tox
"${PYBIN}/pip" install -U cython
Expand All @@ -29,7 +31,9 @@ for PYBIN in /opt/python/*/bin; do
if [[ "${PYBIN}" == *"cp27"* ]] || \
[[ "${PYBIN}" == *"cp36"* ]] || \
[[ "${PYBIN}" == *"cp37"* ]] || \
[[ "${PYBIN}" == *"cp38"* ]];
[[ "${PYBIN}" == *"cp38"* ]] || \
[[ "${PYBIN}" == *"cp39"* ]];
[[ "${PYBIN}" == *"cp310* ]];
then
"${PYBIN}/pip" uninstall -y python-crfsuite
"${PYBIN}/pip" install python-crfsuite --no-index -f /io/wheelhouse
Expand Down
26 changes: 21 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
language: python
matrix:
include:
- os: linux
python: '3.10'
env: TOXENV=py10
- os: linux
python: 3.9
env: TOXENV=py39
- os: linux
python: 3.8
env: TOXENV=py38
Expand All @@ -13,24 +19,34 @@ matrix:
- os: linux
python: 2.7
env: TOXENV=py27
- os: osx
language: generic
env:
- PYTHON='3.10.0'
- TOXENV=py310
- os: osx
language: generic
env:
- PYTHON='3.9.0'
- TOXENV=py39
- os: osx
language: generic
env:
- PYTHON='3.8.2'
- TOXENV=py38
- os: osx
language: generic
env:
env:
- PYTHON='3.7.7'
- TOXENV=py37
- TOXENV=py37
- os: osx
language: generic
env:
env:
- PYTHON='3.6.2'
- TOXENV=py36
- os: osx
language: generic
env:
env:
- PYTHON='2.7.13'
- TOXENV=py27
- sudo: required
Expand Down Expand Up @@ -91,7 +107,7 @@ script:
- tox

after_success:
- pip install wheel twine
- pip install wheel twine
- if [[ $TRAVIS_TAG && "$TRAVIS_OS_NAME" == "osx" ]]; then
python -W ignore setup.py bdist_wheel;
twine upload dist/*;
Expand Down
8 changes: 6 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,14 @@ environment:
- python : 27-x64
- python : 36
- python : 36-x64
- python : 37
- python : 37-x64
- python : 37
- python : 37-x64
- python : 38
- python : 38-x64
- python : 39
- python : 39-x64
- python : 310
- python : 310-x64

install:
- "SET PATH=C:\\Python%PYTHON%;c:\\Python%PYTHON%\\scripts;%PATH%"
Expand Down
2 changes: 2 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,8 @@ def c_compile(obj, src, ext, cc_args, extra_postargs, pp_opts):
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
Expand Down