File tree 2 files changed +1
-9
lines changed
2 files changed +1
-9
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,6 @@ function setup
121
121
{
122
122
ARGS=" $* "
123
123
rm -rf ${DIST} 2> /dev/null
124
- set_metadata_and_setup " neo4j-driver" " True" ${ARGS} --sdist # Legacy package; can be removed in 2.0
124
+ set_metadata_and_setup " neo4j-driver" " True" ${ARGS} # Legacy package; can be removed in 2.0
125
125
set_metadata_and_setup " neo4j" " False" ${ARGS}
126
126
}
Original file line number Diff line number Diff line change 20
20
21
21
import pathlib
22
22
import sys
23
- import warnings
24
23
from contextlib import contextmanager
25
24
26
25
import tomlkit
37
36
)
38
37
39
38
40
- if deprecated :
41
- warnings .warn (
42
- f"`{ package } ` is deprecated, please install `neo4j` instead." ,
43
- DeprecationWarning ,
44
- stacklevel = 0 ,
45
- )
46
-
47
39
readme_path = THIS_DIR / "README.rst"
48
40
readme = readme_path .read_text (encoding = "utf-8" )
49
41
You can’t perform that action at this time.
0 commit comments