Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/actions/build_wheel_and_sdist/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ runs:
# The PyShp repo is required to already be checked out into .,
# e.g. by the calling workflow using:
# steps:
# - uses: actions/checkout@v4
# - uses: actions/checkout@v6
#
# and then calling this Action with:
# - name: Run tests
Expand All @@ -21,7 +21,7 @@ runs:
# with "python" and "pip" on the system Path
# (so that this custom Action can be used with both reproducible
# Pythons from Python docker images, and more frequently deprecated Pythons
# from - uses: actions/setup-python@v5)
# from - uses: actions/setup-python@v6)

- name: Install build (PyPA's pyproject-build)
shell: bash
Expand All @@ -41,7 +41,7 @@ runs:
run: python -m build

- name: Upload built distributions
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: PyShp_wheel_and_sdist
path: dist
6 changes: 3 additions & 3 deletions .github/actions/test/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ runs:
# and the wheel to be tested in ./dist within it.
# e.g. by the calling workflow using:
# steps:
# - uses: actions/checkout@v4
# - uses: actions/checkout@v6
# with:
# path: ./Pyshp
#
Expand All @@ -47,12 +47,12 @@ runs:
# with "python" and "pip" on the system Path
# (so that this custom Action can be used with both reproducible
# Pythons from Python docker images, and more frequently deprecated Pythons
# from - uses: actions/setup-python@v5)
# from - uses: actions/setup-python@v6)


- name: Checkout shapefiles and zip file artefacts repo
if: ${{ inputs.replace_remote_urls_with_localhost == 'yes' }}
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: JamesParrott/PyShp_test_shapefile
path: ./PyShp_test_shapefile
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: '3.x'

Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/run_checks_build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
pre-commit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v6
- uses: pre-commit/action@v3.0.1

mypy-strict:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install mypy
Expand All @@ -31,8 +31,8 @@ jobs:
build_wheel_and_sdist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Build wheel from the project repo
Expand Down Expand Up @@ -61,11 +61,11 @@ jobs:

runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
path: ./Pyshp

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/speed_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ jobs:
build_wheel_and_sdist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
- uses: actions/checkout@v6
- uses: actions/setup-python@v6
- name: Build wheel from the project repo
uses: ./.github/actions/build_wheel_and_sdist

Expand All @@ -34,7 +34,7 @@ jobs:

runs-on: ${{ matrix.os }}
steps:
- uses: actions/setup-python@v5
- uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}

Expand All @@ -51,14 +51,14 @@ jobs:
WHEEL_NAME=$(ls pyshp-*py3-none-any.whl)
python -m pip install $WHEEL_NAME[test]

- uses: actions/checkout@v4
- uses: actions/checkout@v6
with:
path: ./Pyshp



- name: Checkout shapefiles and zip file artefacts repo
uses: actions/checkout@v4
uses: actions/checkout@v6
with:
repository: JamesParrott/PyShp_test_shapefile
path: ./PyShp_test_shapefile
Expand Down
Loading