Skip to content

Publish wheels for legacy package, too #1131

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion bin/dist-functions
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,6 @@ function setup
{
ARGS="$*"
rm -rf ${DIST} 2> /dev/null
set_metadata_and_setup "neo4j-driver" "True" ${ARGS} --sdist # Legacy package; can be removed in 2.0
set_metadata_and_setup "neo4j-driver" "True" ${ARGS} # Legacy package; can be removed in 2.0
set_metadata_and_setup "neo4j" "False" ${ARGS}
}
8 changes: 0 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

import pathlib
import sys
import warnings
from contextlib import contextmanager

import tomlkit
Expand All @@ -37,13 +36,6 @@
)


if deprecated:
warnings.warn(
f"`{package}` is deprecated, please install `neo4j` instead.",
DeprecationWarning,
stacklevel=0,
)

readme_path = THIS_DIR / "README.rst"
readme = readme_path.read_text(encoding="utf-8")

Expand Down