Skip to content

Commit 202d2f0

Browse files
authored
Merge pull request #1585 from TeoZosa/chore/remove-deprecated-code-from-uv-migration
👷 Remove deprecated code from uv migration
2 parents 1e1e09e + 8c2c0d5 commit 202d2f0

File tree

2 files changed

+3
-14
lines changed

2 files changed

+3
-14
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,6 @@ jobs:
3030
enable-cache: true
3131
cache-dependency-glob: "uv.lock"
3232

33-
# FIXME(teo): Temporarily keep Poetry installation for workflow
34-
# backwards-compatibility until the trunk has been fully migrated to uv
35-
- name: Install Poetry
36-
run: |
37-
uv pip install poetry
38-
poetry --version
39-
4033
- name: Check if there is a parent commit
4134
id: check-parent-commit
4235
run: |

Makefile

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,9 @@ install:
7777
$(MAKE) clean
7878

7979
.PHONY: generate-requirements
80-
## Generate project requirements files from `pyproject.toml`
81-
## Creates three files:
82-
## - requirements.txt: base dependencies with sentry
83-
## - requirements-dev.txt: adds development dependencies
84-
## - requirements-all.txt: adds documentation dependencies
80+
## Generate project requirements file with all extras
8581
generate-requirements:
86-
uv pip compile pyproject.toml -o requirements-all.txt --extra sentry --extra dev --extra docs
82+
uv pip compile pyproject.toml -o requirements-all.txt --all-extras
8783

8884
.PHONY: clean-requirements
8985
## Clean generated project requirements files
@@ -121,7 +117,7 @@ get-project-version-number:
121117
| uv run --with tomli -
122118

123119
# Note: The new version should ideally be a valid semver string or a valid bump rule:
124-
# "patch", "minor", "major", "prepatch", "preminor", "premajor", "prerelease".
120+
# "patch", "minor", "major".
125121
.PHONY: bump-commit-and-push-project-version-number-%
126122
## *ATOMICALLY*:
127123
## 1.) Bump the version of the project

0 commit comments

Comments
 (0)