Skip to content

Commit 88cfa6b

Browse files
Update/update main (#66)
* ruff changes * use ruff * update test * Update maps.py Remove TileLayer provider that does not work * Update gtk api url http->https * Fix coord string recognition Add "ETRS " in front of string if not recognize with the first try * Update coord_utils.py * ruff files --------- Co-authored-by: mhallipelto <[email protected]>
1 parent 1f0c109 commit 88cfa6b

File tree

17 files changed

+552
-829
lines changed

17 files changed

+552
-829
lines changed

.github/workflows/workflow.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,12 @@ jobs:
4646
- name: Install dev dependencies
4747
run: |
4848
python -m pip install --no-cache-dir -r requirements-dev.txt
49-
- name: Run black
49+
- name: Run ruff format
5050
run: |
51-
python -m black -l 100 --check pyinfraformat/
52-
- name: Run pydocstyle
51+
python -m ruff format --check pyinfraformat/
52+
- name: Run ruff lint
5353
run: |
54-
python -m pydocstyle --add-ignore=D105 --convention=numpy pyinfraformat/
55-
- name: Run pylint
56-
run: |
57-
python -m pylint pyinfraformat/
54+
python -m ruff check pyinfraformat
5855
- name: Run tests
5956
run: |
6057
mkdir testing_folder

0 commit comments

Comments
 (0)