-
Notifications
You must be signed in to change notification settings - Fork 11
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
chore: updated setup for a new contributor #149
base: main
Are you sure you want to change the base?
Conversation
ngupta23
commented
Feb 12, 2025
•
edited
Loading
edited
- updated setup instructions/files for a new contributor
environment.yml
Outdated
@@ -2,6 +2,7 @@ name: utilsforecast | |||
channels: | |||
- conda-forge | |||
dependencies: | |||
- python=3.10 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am switched the instructions to use uv
instead of conda
so we can move closer to the current standards. Hope that is fine and will address this comment.
|
||
# VSCode | ||
*.code-workspace |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this could actually be useful if setup correctly
# VSCode | |
*.code-workspace |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wont people have their individual preferences in this file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, why would you want to check this into GH unless you want everyone to use VSCode?
settings.ini
Outdated
@@ -29,10 +29,10 @@ user = Nixtla | |||
requirements = numpy packaging pandas>=1.1.1 | |||
plotting_requirements = pandas[plot] plotly plotly-resampler | |||
polars_requirements = polars[numpy] | |||
dev_requirements = black datasetsforecast==0.0.8 nbdev<2.3.26 numba>=0.58.0 pyarrow scipy | |||
dev_requirements = black datasetsforecast==0.0.8 nbdev<2.3.26 numba>=0.58.0 pyarrow scipy mypy flake8 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I've told you several times that these are sorted alphabetically. also we don't need those, we just need pre-commit
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I guess contributing.md
needs to be updated to state that we are using pre-commit in this library. It is not mentioned anywhere in that file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
updated to include
- missing libs from
environment.yml
and removedenvironment.yml
since it was redundant. - pre-commit which was missing originally