Skip to content

Commit 25a19ef

Browse files
authored
Merge branch 'fix-ci' into christian/python-3.10
2 parents 7a7a5d9 + bfebdf9 commit 25a19ef

File tree

7 files changed

+690
-144
lines changed

7 files changed

+690
-144
lines changed

.manylinux-install.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ set -e -x
66
# Compile wheels
77
for PYBIN in /opt/python/*/bin; do
88
if [[ "${PYBIN}" == *"cp27"* ]] || \
9-
[[ "${PYBIN}" == *"cp35"* ]] || \
109
[[ "${PYBIN}" == *"cp36"* ]] || \
1110
[[ "${PYBIN}" == *"cp37"* ]] || \
1211
[[ "${PYBIN}" == *"cp38"* ]] || \
@@ -30,7 +29,6 @@ done
3029
# Install new wheels and test
3130
for PYBIN in /opt/python/*/bin; do
3231
if [[ "${PYBIN}" == *"cp27"* ]] || \
33-
[[ "${PYBIN}" == *"cp35"* ]] || \
3432
[[ "${PYBIN}" == *"cp36"* ]] || \
3533
[[ "${PYBIN}" == *"cp37"* ]] || \
3634
[[ "${PYBIN}" == *"cp38"* ]] || \

.travis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,6 @@ matrix:
1616
- os: linux
1717
python: 3.6
1818
env: TOXENV=py36
19-
- os: linux
20-
python: 3.5
21-
env: TOXENV=py35
2219
- os: linux
2320
python: 2.7
2421
env: TOXENV=py27

CHANGES.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ This is a release without changes in functionality.
117117
0.5 (2014-05-27)
118118
----------------
119119

120-
* Exceptions in logging message handlers are now propogated and raised. This
120+
* Exceptions in logging message handlers are now propagated and raised. This
121121
allows, for example, to stop training earlier by pressing Ctrl-C.
122122

123123
* It is now possible to customize :class:`pycrfsuite.Trainer` logging
@@ -159,7 +159,7 @@ This is a release without changes in functionality.
159159
0.3 (2014-05-14)
160160
----------------
161161

162-
python-crfsuite now detects the featue format (dict vs list of strings)
162+
python-crfsuite now detects the feature format (dict vs list of strings)
163163
automatically - it turns out the performance overhead is negligible.
164164

165165
* ``Trainer.append_stringslists`` and ``Trainer.append_dicts`` methods

appveyor.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@ environment:
66
matrix:
77
- python : 27
88
- python : 27-x64
9-
- python : 35
10-
- python : 35-x64
119
- python : 36
1210
- python : 36-x64
1311
- python : 37

0 commit comments

Comments
 (0)