-
-
Notifications
You must be signed in to change notification settings - Fork 142
Replace pip
with uv
#579
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
base: master
Are you sure you want to change the base?
Replace pip
with uv
#579
Changes from 1 commit
ef1ed5c
456eca8
ee8b5ea
985c4f5
617ffad
cf73476
56e3f32
990f824
6634c9b
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
3.13.0 | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
[project] | ||
name = "archweb" | ||
version = "0.1.0" | ||
description = "Archlinux website code" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Arch Linux ;-) |
||
readme = "README.md" | ||
requires-python = ">=3.13" | ||
dependencies = [ | ||
"bencode-py==4.0.0", | ||
"bleach==6.0.0", | ||
"django==5.1.10", | ||
"django-countries==7.6.1", | ||
"django-csp==4.0", | ||
"django-extensions==4.1", | ||
"django-prometheus==2.3.1", | ||
"feedparser==6.0.11", | ||
"ipy==1.1", | ||
"jsmin==3.0.1", | ||
"markdown==3.3.7", | ||
"parse==1.20.2", | ||
"pgpdump==1.5", | ||
"ptpython==2.0.4", | ||
"requests==2.32.4", | ||
"sqlparse==0.5.0", | ||
"xtarfile==0.2.1", | ||
"zstandard==0.23.0", | ||
] | ||
|
||
[dependency-groups] | ||
dev = [ | ||
"flake8>=7.3.0", | ||
"pytest>=8.4.1", | ||
"pytest-cov>=6.2.1", | ||
"pytest-django>=4.11.1", | ||
] | ||
prod = [ | ||
"pyasyncore==1.0.4", | ||
"pyinotify==0.9.6", | ||
"pymemcache==3.5.0", | ||
] |
This file was deleted.
|
This file was deleted.
This file was deleted.
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.
Can't this be part of pyproject.toml?
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.
It can.
uv
creates this by default, given some Python toolings read this file. I will remove this and keep it inpyproject.toml
, then updateworkflow
to revert to its original version selection.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.
Addressed in
6634c9b
(#579)