Skip to content

Commit b47053f

Browse files
Merge pull request #130 from Living-with-machines/develop
Update python version
2 parents 112a4f4 + 9afe71e commit b47053f

File tree

3 files changed

+8
-9
lines changed

3 files changed

+8
-9
lines changed

.github/workflows/dm_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
strategy:
1111
matrix:
1212
os: [ubuntu-latest]
13-
python-version: [3.8]
13+
python-version: [3.9]
1414
fail-fast: false
1515

1616
steps:

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,13 +64,13 @@ We strongly recommend installation via Anaconda (refer to [Anaconda website and
6464
* Create a new environment for DeezyMatch
6565

6666
```bash
67-
conda create -n py38deezy python=3.8
67+
conda create -n py39deezy python=3.9
6868
```
6969

7070
* Activate the environment:
7171

7272
```bash
73-
conda activate py38deezy
73+
conda activate py39deezy
7474
```
7575

7676
* DeezyMatch can be installed in different ways:
@@ -122,10 +122,10 @@ conda activate py38deezy
122122
pip install -v -e .
123123
```
124124

125-
* We have provided some [Jupyter Notebooks to show how different components in DeezyMatch can be run](./examples). To allow the newly created `py38deezy` environment to show up in the notebooks:
125+
* We have provided some [Jupyter Notebooks to show how different components in DeezyMatch can be run](./examples). To allow the newly created `py39deezy` environment to show up in the notebooks:
126126

127127
```bash
128-
python -m ipykernel install --user --name py38deezy --display-name "Python (py38deezy)"
128+
python -m ipykernel install --user --name py39deezy --display-name "Python (py39deezy)"
129129
```
130130

131131
## Data and directory structure in tutorials

setup.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
setuptools.setup(
44
name="DeezyMatch",
5-
version="1.3.2",
5+
version="1.3.3",
66
description="A Flexible Deep Learning Approach to Fuzzy String Matching and Candidate Ranking",
77
author=u"The LwM Development Team",
88
#author_email="",
@@ -16,7 +16,7 @@
1616
packages = setuptools.find_packages(),
1717
include_package_data = True,
1818
platforms="OS Independent",
19-
python_requires='>=3.7',
19+
python_requires='>=3.9',
2020
install_requires=[
2121
"torch>=1.5.0",
2222
"torchvision>=0.6.0",
@@ -36,8 +36,7 @@
3636
"License :: OSI Approved :: MIT License",
3737
"Natural Language :: English",
3838
"Programming Language :: Python :: 3",
39-
"Programming Language :: Python :: 3.7",
40-
"Programming Language :: Python :: 3.8",
39+
"Programming Language :: Python :: 3.9",
4140
"Intended Audience :: End Users/Desktop",
4241
"Intended Audience :: Developers",
4342
"Intended Audience :: Education",

0 commit comments

Comments
 (0)