Skip to content

Commit

Permalink
Merge pull request #130 from Living-with-machines/develop
Browse files Browse the repository at this point in the history
Update python version
  • Loading branch information
kasra-hosseini committed Jul 19, 2022
2 parents 112a4f4 + 9afe71e commit b47053f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dm_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: [3.8]
python-version: [3.9]
fail-fast: false

steps:
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,13 +64,13 @@ We strongly recommend installation via Anaconda (refer to [Anaconda website and
* Create a new environment for DeezyMatch

```bash
conda create -n py38deezy python=3.8
conda create -n py39deezy python=3.9
```

* Activate the environment:

```bash
conda activate py38deezy
conda activate py39deezy
```

* DeezyMatch can be installed in different ways:
Expand Down Expand Up @@ -122,10 +122,10 @@ conda activate py38deezy
pip install -v -e .
```

* 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:
* 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:

```bash
python -m ipykernel install --user --name py38deezy --display-name "Python (py38deezy)"
python -m ipykernel install --user --name py39deezy --display-name "Python (py39deezy)"
```

## Data and directory structure in tutorials
Expand Down
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setuptools.setup(
name="DeezyMatch",
version="1.3.2",
version="1.3.3",
description="A Flexible Deep Learning Approach to Fuzzy String Matching and Candidate Ranking",
author=u"The LwM Development Team",
#author_email="",
Expand All @@ -16,7 +16,7 @@
packages = setuptools.find_packages(),
include_package_data = True,
platforms="OS Independent",
python_requires='>=3.7',
python_requires='>=3.9',
install_requires=[
"torch>=1.5.0",
"torchvision>=0.6.0",
Expand All @@ -36,8 +36,7 @@
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Developers",
"Intended Audience :: Education",
Expand Down

0 comments on commit b47053f

Please sign in to comment.