Skip to content

Commit

Permalink
update pip installs
Browse files Browse the repository at this point in the history
  • Loading branch information
gboeing committed Dec 29, 2024
1 parent 8957e98 commit adde657
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

- name: Build and check package
run: |
python -m pip install --user -r ./environments/requirements/requirements-packaging.txt
python -m pip install -r ./environments/requirements/requirements-packaging.txt
python -m validate_pyproject ./pyproject.toml
python -m hatch build --clean
python -m twine check --strict ./dist/*
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- name: Install OSMnx
run: |
python -m pip install -e .
python -m pip install .
python -m pip check
micromamba list
python -m pip show osmnx
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-docs-linkcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

- name: Install requirements
run: |
python -m pip install --user furo "sphinx==7.*" sphinx-autodoc-typehints
python -m pip install -r ./environments/requirements/requirements-docs.txt
python -m pip check
- name: Build docs and check links
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-latest-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Install OSMnx with latest/pre-release dependencies
run: |
python -m pip install --pre -r ./environments/tests/requirements-test-latest-deps.txt
python -m pip install -e .
python -m pip install .
python -m pip check
python -m pip list -v
python -m pip show osmnx
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-minimum-deps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: Install OSMnx
run: |
python -m pip install -e .
python -m pip install .
python -m pip check
micromamba list
python -m pip show osmnx
Expand Down

0 comments on commit adde657

Please sign in to comment.