Skip to content

Commit b24b1b7

Browse files
committed
making changes on upgrade packages
1 parent 4e7e509 commit b24b1b7

File tree

6 files changed

+16
-18
lines changed

6 files changed

+16
-18
lines changed

Makefile

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,15 @@
11
venv:
2-
python3.10 -m venv .venv
2+
python3.11 -m venv .venv
33
echo 'run `source .venv/bin/activate` to start develop DataModel'
44

5-
venv11:
6-
python3.11 -m venv .venv11
5+
venv12:
6+
python3.12 -m venv .venv11
77
echo 'run `source .venv/bin/activate` to start develop DataModel'
88

9-
setup:
10-
pip install wheel==0.42.0
9+
install:
1110
pip install -e .
1211

1312
develop:
14-
pip install wheel==0.42.0
1513
pip install -e .
1614
pip install -Ur docs/requirements-dev.txt
1715

datamodel/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
__title__ = 'python-datamodel'
55
__description__ = ('simple library based on python +3.8 to use Dataclass-syntax'
66
'for interacting with Data')
7-
__version__ = '0.6.28'
7+
__version__ = '0.7.0'
88
__author__ = 'Jesus Lara'
99
__author_email__ = '[email protected]'
1010
__license__ = 'BSD'

docs/requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ pytest-assume==2.4.3
1818
sdist==0.0.0
1919
sphinx==6.1.3
2020
tox==4.4.5
21-
twine==4.0.2
21+
twine==5.1.1

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
[build-system]
22
requires = [
3-
'setuptools==67.6.1',
4-
'Cython==3.0.9',
5-
'wheel==0.42.0'
3+
'setuptools==74.0.0',
4+
'Cython==3.0.11',
5+
'wheel==0.44.0'
66
]
77
build-backend = "setuptools.build_meta"
88

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.4.1
2+
current_version = 0.7.0
33
commit = True
44
tag = True
55

setup.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -131,18 +131,18 @@ def readme():
131131
include_package_data=True,
132132
license=__license__,
133133
setup_requires=[
134-
"setuptools==67.6.1",
135-
"Cython==3.0.9",
136-
"wheel==0.42.0"
134+
'setuptools==74.0.0',
135+
'Cython==3.0.11',
136+
'wheel==0.44.0'
137137
],
138138
install_requires=[
139-
"numpy==1.26.4",
140-
"uvloop==0.19.0",
139+
"numpy>=1.26.4",
140+
"uvloop>=0.20.0",
141141
"asyncio==3.4.3",
142142
"faust-cchardet==2.1.19",
143143
"ciso8601==2.3.1",
144144
"objectpath==0.6.1",
145-
"orjson==3.10.3",
145+
"orjson==3.10.7",
146146
'typing_extensions>=4.9.0',
147147
"asyncpg>=0.29.0",
148148
"python-dateutil==2.8.2",

0 commit comments

Comments
 (0)