Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into sqlitedb
Browse files Browse the repository at this point in the history
  • Loading branch information
thorbjoernl committed Aug 20, 2024
2 parents 132d8e3 + fbef88c commit 6c46606
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 8 deletions.
19 changes: 13 additions & 6 deletions .github/workflows/CI-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,18 +12,25 @@ permissions:
jobs:
build:

runs-on: ubuntu-latest

runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11', '3.12']
experimental: [false]
os: [ubuntu-22.04]
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install dependencies
python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Tox environment
run: |
python -m pip install --upgrade pip
pip install --upgrade pip
pip install tox
tox -e py --notest
- name: Test with tox
run: |
tox -m test
Expand Down
9 changes: 7 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = aerovaldb
version = 0.0.18.dev0
version = 0.0.19
author = Augustin Mortier, Thorbjørn Lundin, Heiko Klein
author_email = [email protected]
description = aeroval database to communicate between pyaerocom and aeroval
Expand All @@ -22,7 +22,7 @@ url = https://github.com/metno/aerovaldb


[options]
python_version = >=3.9
python_version = >=3.10
install_requires =
importlib-metadata >= 3.6; python_version < "3.10"
simplejson
Expand Down Expand Up @@ -54,6 +54,11 @@ min_version = 4.0
env_list =
mpy
py310
py311
py312
skip_missing_interpreters = True
isolated_build = True
requires =
depends =

[testenv]
Expand Down

0 comments on commit 6c46606

Please sign in to comment.