Skip to content

Commit

Permalink
fix: Fix release workflow and broken dependencies (#40)
Browse files Browse the repository at this point in the history
This PR proposes to fix the release workflow and fix broken dependencies 
ref: psf/cachecontrol#292 (comment)
  • Loading branch information
xmnlab authored May 19, 2023
1 parent 68d82db commit c77c6f9
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .makim.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,14 @@ groups:
targets:
ci:
help: Run semantic release on CI
run: {{ vars.app }} '--ci'
run: {{ vars.app }} --ci

dry:
help: Run semantic release in dry-run mode
run: {{ vars.app }} '--dry-run'
run: |
{{ vars.app }} --dry-run
poetry build
poetry publish --dry-run
tests:
targets:
Expand Down
2 changes: 2 additions & 0 deletions conda/dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ dependencies:
- python 3.8.1 # min version supported
- poetry
- nodejs # used by semantic-release
# https://github.com/ionrock/cachecontrol/issues/292#issuecomment-1536120527
- urllib3 <2
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@ jinja2 = "<3.0.3"
xonsh = "^0.13.4"
python-dotenv = "^0.21.1"
colorama = "^0.4.6"
urllib3 = "<2"

[tool.poetry.dev-dependencies]
containers-sugar = "1.5.0"
Expand Down

0 comments on commit c77c6f9

Please sign in to comment.