Skip to content

Commit

Permalink
Avoid generating editable requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
max-muoto committed Dec 27, 2024
1 parent 1bdde4a commit 3579c06
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ sync: ## Sync the virtual environment
.PHONY: lock
lock: ## Lock the dependencies
uv lock
uv export > docs/requirements.txt
uv export > docs/requirements.txt --no-editable


.PHONY: lint
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Defining your jobs is as simple as decorating a function returning with `@pgcron

### Update

A `pgcron.Update` is an update statement to be executed by pgcron.
A `pgcron.Update` is an update statement on an ORM query.

```python
import pgcron
Expand All @@ -52,7 +52,7 @@ def my_job():

### Delete

A `pgcron.Delete` is a delete statement to be executed by pgcron.
A `pgcron.Delete` is a delete statement on an ORM query.

```python
import pgcron
Expand Down
4 changes: 2 additions & 2 deletions docs/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# This file was autogenerated by uv via the following command:
# uv export
-e .
# uv export --no-editable
.
asgiref==3.8.1 \
--hash=sha256:3e1e3ecc849832fe52ccf2cb6686b7a55f82bb1d6aee72a58826471390335e47 \
--hash=sha256:c343bd80a0bec947a9860adb4c432ffa7db769836c64238fc34bdc3fec84d590
Expand Down

0 comments on commit 3579c06

Please sign in to comment.