Skip to content

PHOENIX-7323 fix twine check error #153

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
Jun 4, 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
1 change: 1 addition & 0 deletions python-phoenixdb/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ Extract the archive and then install it manually::
Note that old versions of pip and setuptools have various bugs and incompatibilities that
may result in installation errors, especially on old python versions.
If you encounter problems while building, update your pip and setuptools, and try again::

pip install --upgrade pip
pip install --upgrade setuptools

Expand Down
5 changes: 5 additions & 0 deletions python-phoenixdb/RELEASING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ Prepare the RC

#. Make sure the dockerized tests described in README.rst run successfully

#. Make sure to run twine check on the phoenixdb package files for python 2 and 3 and ensure they pass:

python setup.py sdist bdist_wheel
twine check dist/*

#. Discuss release plans on [email protected]

#. Open a ticket like https://issues.apache.org/jira/browse/PHOENIX-6529
Expand Down
1 change: 1 addition & 0 deletions python-phoenixdb/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,7 @@ def readme():
name="phoenixdb",
version=version,
description="Phoenix database adapter for Python",
long_description_content_type="text/x-rst",
long_description=readme(),
author="Apache Software Foundation",
author_email="[email protected]",
Expand Down
Loading