Skip to content

Commit fd1d40b

Browse files
jameszyaoSimsonW
authored andcommitted
chore: update version and requirements
1 parent 9f9debf commit fd1d40b

File tree

3 files changed

+17
-9
lines changed

3 files changed

+17
-9
lines changed

requirements.txt

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
certifi >= 14.05.14
2-
six >= 1.10
3-
python_dateutil >= 2.5.3
4-
setuptools >= 21.0.0
5-
httpx >= 0.23.0
6-
pydantic>=2.0
1+
certifi>=14.05.14
2+
six>=1.10
3+
python_dateutil>=2.5.3
4+
setuptools>=21.0.0
5+
httpx>=0.23.0
6+
pydantic>=2.5.0
7+

setup.py

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from setuptools import setup, find_packages # noqa: H301
1010
import taskingai
1111

12-
NAME = "client"
12+
NAME = "taskingai"
1313
VERSION = taskingai.__version__
1414
# To install the library, run the following
1515
#
@@ -18,7 +18,14 @@
1818
# prerequisite: setuptools
1919
# http://pypi.python.org/pypi/setuptools
2020

21-
REQUIRES = ["httpx >= 0.23.0", "six >= 1.10", "certifi", "python-dateutil"]
21+
REQUIRES = [
22+
"certifi>=14.05.14",
23+
"six>=1.10",
24+
"python_dateutil>=2.5.3",
25+
"setuptools>=21.0.0",
26+
"httpx>=0.23.0",
27+
"pydantic>=2.5.0",
28+
]
2229

2330
setup(
2431
name=NAME,

taskingai/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
__title__ = "taskingai"
2-
__version__ = "0.0.6"
2+
__version__ = "0.0.7"

0 commit comments

Comments
 (0)