-
Notifications
You must be signed in to change notification settings - Fork 429
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
Migrate to hatch #749
Migrate to hatch #749
Conversation
6153f97
to
1ca45eb
Compare
79ba291
to
7b9b311
Compare
2c2e8b0
to
e41cca4
Compare
4be00bc
to
dbd236f
Compare
d2b0ddf
to
af6ab4d
Compare
91bd2ec
to
999c196
Compare
0447f4a
to
99a43e0
Compare
f1265ea
to
3fcb36d
Compare
d78315a
to
7db11f6
Compare
9bf341d
to
1540d56
Compare
70ce957
to
a117394
Compare
bbb2466
to
bae4f6e
Compare
56d7c20
to
db13d32
Compare
Can we get a draft version without the linting / quoting changes? Would be a lot easier to review / iterate if we can undo that part for now. |
Absolutely @MSeal. I would love to see the precommit bot to avoid autofixing things. Right now this is a draft. I want to see if by going to more modern packaging if we can get rid of tox and simplify CI. |
- repo: https://github.com/charliermarsh/ruff-pre-commit | ||
rev: v0.1.2 | ||
hooks: | ||
- id: ruff | ||
args: | ||
- --fix | ||
- id: ruff-format | ||
|
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.
- repo: https://github.com/charliermarsh/ruff-pre-commit | |
rev: v0.1.2 | |
hooks: | |
- id: ruff | |
args: | |
- --fix | |
- id: ruff-format |
already added with switch flake8 -> ruff #752
- repo: https://github.com/psf/black | ||
rev: 23.11.0 | ||
hooks: | ||
- id: black | ||
name: Black code | ||
args: ["-S"] |
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 drop Black?
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.
Because this adds ruff-format instead.
@@ -80,7 +80,7 @@ | |||
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store', 'UPDATE.md'] | |||
|
|||
# The name of the Pygments (syntax highlighting) style to use. | |||
pygments_style = "sphinx" | |||
pygments_style = 'sphinx' |
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.
lets fo these changes in separate PR so it is easier to follow what is the main change/focus of this PR
"C", # flake8-comprehensions | ||
"B", # flake8-bugbear | ||
"UP", # pyupgrade |
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.
lets rather apply these one by one in separate PRs
"moto", | ||
"notebook", | ||
"pip>=18.1", | ||
"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.
does it have also split to dev and base requirements?
@Borda I'm going to close this PR but am leaving open right now as a WIP as I'm going to write a tutorial for the hatch maintainer about migrating an existing repo to hatch. |
looking forward to reading it it would be an interesting solution for a few of my projects... |
@Borda FWIW, I've found that |
I'm going to close this PR since it's out of date. |
Closes #747