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/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
- uses: actions/checkout@master
- uses: actions/setup-python@v5
with:
python-version: '3.11'
python-version: '3.12'
- name: Install requirements 📦
run: |
python -m pip install --upgrade pip
pip install mkdocs
python3 -m pip install --upgrade pip
pip3 install mkdocs
- name: Deploy 📦
run: cd docs && mkdocs gh-deploy --force -m 'update website'
9 changes: 5 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,25 @@ on: [ push, pull_request ]

jobs:
main:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
strategy:
matrix:
python-version: ["3.10", "3.11"]
python-version: ["3.12"]
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v5
name: Setup Python ${{ matrix.python-version }}
with:
python-version: ${{ matrix.python-version }}
- name: Install system dependencies 📦
run: sudo apt-get update && sudo apt-get install -y dh-python devscripts fakeroot debhelper python3-all python3-setuptools build-essential
run: sudo apt-get update && sudo apt-get install -y dh-python devscripts fakeroot debhelper python3-all build-essential
- name: Install requirements 📦
run: |
python3 -m pip install --upgrade pip
pip3 install setuptools
pip3 install -r requirements-dev.txt
- name: Install package 📦
run: python3 setup.py install
run: pip3 install .
- name: run tests with coverage ⚙️
run: |
coverage run --source pygeometa tests/run_tests.py
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[build-system]
requires = ["setuptools>=46.4", "wheel"]
build-backend = "setuptools.build_meta"
1 change: 0 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ def get_package_version():
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering :: GIS'
Expand Down