Skip to content
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

Replace setup.py with pyproject.toml #2476

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft

Conversation

fao89
Copy link
Member

@fao89 fao89 commented Mar 18, 2025

No description provided.

@fao89 fao89 marked this pull request as draft March 18, 2025 14:55
pyproject.toml Outdated
[tool.black]
line-length = 100
target-version = ["py36", "py37"]
target-version = ["py39", "py310", "py311", "py312"]
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we currently require minimum py311 so we can set to py311

@rochacbruno
Copy link
Member

Add the ui/build.py to

sonar.exclusions = \

Comment on lines +1 to +71
import os
import tempfile
import tarfile
import shutil
import urllib.request
import urllib.error
from distutils import log

from setuptools.command.build_py import build_py as _BuildPyCommand
from setuptools.command.sdist import sdist as _SDistCommand

version = "4.11.0dev"

DEV_UI_DOWNLOAD_URL = (
"https://github.com/ansible/ansible-hub-ui/"
"releases/download/dev/automation-hub-ui-dist.tar.gz"
)

ALTERNATE_UI_DOWNLOAD_URL = os.environ.get("ALTERNATE_UI_DOWNLOAD_URL")

UI_DOWNLOAD_URL = (
"https://github.com/ansible/ansible-hub-ui/"
f"releases/download/{version}/automation-hub-ui-dist.tar.gz"
)
TARGET_DIR = "galaxy_ng/app/static/galaxy_ng"

FORCE_DOWNLOAD_UI = os.environ.get("FORCE_DOWNLOAD_UI", False)


def prepare_static():
if os.path.exists(TARGET_DIR):
if FORCE_DOWNLOAD_UI:
log.warn(f"Removing {TARGET_DIR} and re downloading the UI.")
shutil.rmtree(TARGET_DIR)
else:
log.warn(f"Static directory {TARGET_DIR} already exists, skipping. ")
return

with tempfile.NamedTemporaryFile() as download_file:
log.info(f"Downloading UI distribution to temporary file: {download_file.name}")

if ALTERNATE_UI_DOWNLOAD_URL:
log.info(f"Downloading UI from {ALTERNATE_UI_DOWNLOAD_URL}")
_download_tarball(ALTERNATE_UI_DOWNLOAD_URL, download_file)
else:
log.info(f"Attempting to download UI for version {version}")
try:
_download_tarball(UI_DOWNLOAD_URL, download_file)
except urllib.error.HTTPError:
log.warn(f"Failed to retrieve UI for {version}. Downloading latest UI.")
_download_tarball(DEV_UI_DOWNLOAD_URL, download_file)

log.info(f"Extracting UI static files to {TARGET_DIR}")
with tarfile.open(fileobj=download_file) as tfp:
tfp.extractall(TARGET_DIR)


def _download_tarball(url, download_file):
urllib.request.urlretrieve(url, filename=download_file.name)


class SDistCommand(_SDistCommand):
def run(self):
prepare_static()
return super().run()


class BuildPyCommand(_BuildPyCommand):
def run(self):
prepare_static()
return super().run()
Copy link
Member

@rochacbruno rochacbruno Mar 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wonder if these custom build entrypoints for preparing UI are still required?

We are not releasing to PyPI anymore, we dont inspect people to rely on the UI coming from the package.

AFAIK galaxy.ansible.com has UI deployed directly from UI repo, can you confirm @drodowic

Maybe we can just get rid of those custom entrypoints

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we should have a separate PR for that then,
so we can have it highlighted on the changelog that the UI was removed

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

you are correct that galaxy.ansible.com deploys the UI seperately, and this built in UI in not utilized in the galaxy pipeline.

pyproject.toml Outdated
Comment on lines 32 to 52
dependencies = [
"boto3",
"distro",
"django-ansible-base[jwt-consumer,feature-flags] @ git+https://github.com/ansible/[email protected]",
"django-auth-ldap==4.0.0",
"django-crum==0.7.9",
"django-flags>=5.0.13",
"django-ipware<4.0.0,>=3.0.0",
"django-picklefield<4.0.0,>=3.0.1",
"django-prometheus>=2.0.0",
"drf-spectacular",
"dynaconf>=3.2.10",
"galaxy-importer>=0.4.27,<0.5.0",
"insights_analytics_collector>=0.3.0",
"marshmallow<4.0.0,>=3.6.1",
"pulp-container>=2.19.2,<2.20.0",
"pulp_ansible==0.23.1",
"pulpcore>=3.49.0,<3.50.0",
"social-auth-app-django>=5.2.0",
"social-auth-core>=4.4.2",
]
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

return spec


unpin_requirements = os.getenv("LOCK_REQUIREMENTS") == "0"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like we rely on LOCK_REQUIREMENTS on a lot of places and I am not sure how it would be with pyproject as it is a static file.

https://github.com/search?q=repo%3Aansible%2Fgalaxy_ng%20%20LOCK_REQUIREMENTS&type=code

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not sure, I need to research more

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

actually, I realize both DJANGO_ANSIBLE_BASE_BRANCH and LOCK_REQUIREMENTS aren't pyproject.toml issues, we can handle those at dev environment level

return super().run()


django_ansible_base_branch = os.getenv('DJANGO_ANSIBLE_BASE_BRANCH', '2025.3.7')
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

AFAIK DJANGO_ANSIBLE_BASE_BRANCH may be set by some testing pipelines, for example to point to devel how would we do it with pyproject?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not sure, I need to research more

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@fao89 fao89 force-pushed the pyproject branch 3 times, most recently from 053644b to 6e29f91 Compare March 21, 2025 19:42
@fao89
Copy link
Member Author

fao89 commented Mar 24, 2025

basically this works, but there is a little issue with DEV_SOURCE_PATH,
for it to work, you need to add paths in order of dependency.
DEV_SOURCE_PATH="galaxy_ng:pulp_ansible:dynaconf" would work fine, but
DEV_SOURCE_PATH="dynaconf:pulp_ansible:galaxy_ng" would not work, as galaxy_ng would be the last to be installed and it would reinstall pulp_ansible and dynaconf

Signed-off-by: Fabricio Aguiar <[email protected]>

rh-pre-commit.version: 2.3.2
rh-pre-commit.check-secrets: ENABLED
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants