Skip to content

Commit

Permalink
Release version 0.2.2
Browse files Browse the repository at this point in the history
Bug fixes:
- fix directory traversal vulnerability in zip extraction
- fix CSV module issues with  python 3.11

End of support:
- python 3.7
  • Loading branch information
LBeaudoux committed Jun 22, 2023
1 parent 4f4fa50 commit 710e41d
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

## Installation

This library supports Python 3.7.1+.
This library supports Python 3.8+.

```sh
pip install tatoebatools
Expand Down
9 changes: 5 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setuptools.setup(
name="tatoebatools",
version="0.2.1",
version="0.2.2",
author="L.Beaudoux",
description="A library for downloading and reading data from Tatoeba",
long_description=long_description,
Expand All @@ -14,17 +14,18 @@
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
],
python_requires=">=3.7.1",
python_requires=">=3.8.0",
install_requires=[
"beautifulsoup4>=4.9.0",
"pandas>=1.3.3",
"pandas>=1.5.0",
"requests>=2.23.0",
"SQLAlchemy==1.4.23",
"tqdm>=4.46.0",
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37, py38, py39
envlist = py38, py39, py310, py311

[testenv]
deps = pytest
Expand Down

0 comments on commit 710e41d

Please sign in to comment.