We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Since eggs are deprecated https://setuptools.pypa.io/en/latest/deprecated/commands.html#bdist-egg-create-a-python-egg-for-the-project it makes sense to add support for wheels.
Proposed config file:
stacks: default: "scrapy:2.8" projects: dev: id: 123 requirements: file: requirements.txt wheels: - ../path/to/some-0.1.0-py3-none-any.whl - other.whl prod: 456 requirements: file: requirements.txt wheels: - /absolute/path/to/some.whl
The text was updated successfully, but these errors were encountered:
Or may be it's better to add support for setting a path to a folder that contains setup.py?
setup.py
Sorry, something went wrong.
We could support both. But I think an initial implementation expecting a pre-built wheel file makes sense.
Agree, let's get it done step by step.
No branches or pull requests
Since eggs are deprecated https://setuptools.pypa.io/en/latest/deprecated/commands.html#bdist-egg-create-a-python-egg-for-the-project it makes sense to add support for wheels.
Proposed config file:
The text was updated successfully, but these errors were encountered: