-
Notifications
You must be signed in to change notification settings - Fork 8
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
Make repo package-able #32
Comments
I'm just looking at the last task ("Ease restrictions on dependency versions") and after a bit of reading I think we're probably fine to leave things more or less as they are. Apparently if you specify a dependency version as The only thing is that this version logic depends on packages using semver and in the case of the More info: https://python-poetry.org/docs/basic-usage/ |
Sorry, I didn't see this comment before I made #71 This sounds good, and mostly in line with my expectations. The only thing is if we keep automatically updating the versions of these packages, won't we restrict compatibility with other packages that can only use older versions? I would've assumed we should set the versions to the oldest version that the package supports to make it it as compatible as possible. |
The repo structure is not currently consistent with the tooling used for building python packages. In particular, the data files are not in findable locations.
Ideally we should lift the severity of restrictions on dependencies for compatibility with other people's code.
Some requirements for this:
run_app.py
into the main module #72importlib
(specifically inutils.py
)The text was updated successfully, but these errors were encountered: