Skip to content

Commit c7a47d5

Browse files
authored
Merge pull request #138 from stephenhky/python3_11
Support for Python 3.11
2 parents d20fbe5 + e98d097 commit c7a47d5

File tree

5 files changed

+9
-108
lines changed

5 files changed

+9
-108
lines changed

.circleci/config.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,11 @@ jobs:
4848
docker:
4949
- image: cimg/python:3.10
5050

51+
py311:
52+
<<: *shared
53+
docker:
54+
- image: cimg/python:3.11
55+
5156

5257
workflows:
5358
version: 2
@@ -57,3 +62,4 @@ workflows:
5762
- py38
5863
- py39
5964
- py310
65+
- py311

bin/WordEmbedAPI

Lines changed: 0 additions & 101 deletions
This file was deleted.

docs/install.rst

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ Required Packages
7272
- Pandas_ (Python Data Analysis Library, version >= 1.0.0)
7373
- snowballstemmer_ (Snowball Stemmer, version >= 2.0.0)
7474
- TensorFlow_ (TensorFlow, version >= 2.0.0)
75-
- Flask_ (Flask, version >= 1.1.0)
7675
- Joblib_ (Joblib: lightweight Python pipelining, version >= 0.14)
7776

7877
Home: :doc:`index`
@@ -88,6 +87,4 @@ Home: :doc:`index`
8887
.. _gensim: https://radimrehurek.com/gensim/
8988
.. _Pandas: http://pandas.pydata.org/
9089
.. _snowballstemmer: https://github.com/snowballstem/snowball
91-
.. _TensorFlow: https://www.tensorflow.org/
92-
.. _Flask: https://flask.palletsprojects.com/
9390
.. _Joblib: https://joblib.readthedocs.io/en/latest/

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Cython>=0.29.0
22
numpy>=1.16.0
33
scipy>=1.6.0
44
joblib>=0.14
5-
scikit-learn>=0.23.0
5+
scikit-learn>=0.22.0
66
tensorflow>=2.5.0
77
keras>=2.4.0
88
gensim>=4.0.0

setup.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ def test_requirements():
2828

2929

3030
setup(name='shorttext',
31-
version='1.5.8',
31+
version='1.5.9a1',
3232
description="Short Text Mining",
3333
long_description=package_description(),
3434
long_description_content_type='text/markdown',
@@ -86,8 +86,7 @@ def test_requirements():
8686
setup_requires=setup_requirements(),
8787
install_requires=install_requirements(),
8888
scripts=['bin/ShortTextCategorizerConsole',
89-
'bin/ShortTextWordEmbedSimilarity',
90-
'bin/WordEmbedAPI'],
89+
'bin/ShortTextWordEmbedSimilarity'],
9190
test_suite="test",
9291
tests_requires=test_requirements(),
9392
zip_safe=False)

0 commit comments

Comments
 (0)