File tree 6 files changed +16
-18
lines changed
6 files changed +16
-18
lines changed Original file line number Diff line number Diff line change 1
1
venv :
2
- python3.10 -m venv .venv
2
+ python3.11 -m venv .venv
3
3
echo ' run `source .venv/bin/activate` to start develop DataModel'
4
4
5
- venv11 :
6
- python3.11 -m venv .venv11
5
+ venv12 :
6
+ python3.12 -m venv .venv11
7
7
echo ' run `source .venv/bin/activate` to start develop DataModel'
8
8
9
- setup :
10
- pip install wheel==0.42.0
9
+ install :
11
10
pip install -e .
12
11
13
12
develop :
14
- pip install wheel==0.42.0
15
13
pip install -e .
16
14
pip install -Ur docs/requirements-dev.txt
17
15
Original file line number Diff line number Diff line change 4
4
__title__ = 'python-datamodel'
5
5
__description__ = ('simple library based on python +3.8 to use Dataclass-syntax'
6
6
'for interacting with Data' )
7
- __version__ = '0.6.28 '
7
+ __version__ = '0.7.0 '
8
8
__author__ = 'Jesus Lara'
9
9
__author_email__ = '[email protected] '
10
10
__license__ = 'BSD'
Original file line number Diff line number Diff line change @@ -18,4 +18,4 @@ pytest-assume==2.4.3
18
18
sdist == 0.0.0
19
19
sphinx == 6.1.3
20
20
tox == 4.4.5
21
- twine == 4.0.2
21
+ twine == 5.1.1
Original file line number Diff line number Diff line change 1
1
[build-system ]
2
2
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'
6
6
]
7
7
build-backend = " setuptools.build_meta"
8
8
Original file line number Diff line number Diff line change 1
1
[bumpversion]
2
- current_version = 0.4.1
2
+ current_version = 0.7.0
3
3
commit = True
4
4
tag = True
5
5
Original file line number Diff line number Diff line change @@ -131,18 +131,18 @@ def readme():
131
131
include_package_data = True ,
132
132
license = __license__ ,
133
133
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'
137
137
],
138
138
install_requires = [
139
- "numpy= =1.26.4" ,
140
- "uvloop==0.19 .0" ,
139
+ "numpy> =1.26.4" ,
140
+ "uvloop>=0.20 .0" ,
141
141
"asyncio==3.4.3" ,
142
142
"faust-cchardet==2.1.19" ,
143
143
"ciso8601==2.3.1" ,
144
144
"objectpath==0.6.1" ,
145
- "orjson==3.10.3 " ,
145
+ "orjson==3.10.7 " ,
146
146
'typing_extensions>=4.9.0' ,
147
147
"asyncpg>=0.29.0" ,
148
148
"python-dateutil==2.8.2" ,
You can’t perform that action at this time.
0 commit comments