Skip to content

Commit

Permalink
Updated CI config, bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
sveinbjornt committed May 12, 2024
1 parent f0a89b3 commit d8e428f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,23 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"]
python-version: ["3.8", "3.12"]

steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}

- name: Install dependencies
run: |
python -m pip install ".[dev]"
- name: Run ruff linter
run: |
ruff src/iceaddr
- name: Test with pytest
run: |
python -m pytest -vvv
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "iceaddr"
version = "0.5.7"
version = "0.5.8"
description = "Look up information about Icelandic street addresses, postcodes, landmarks, locations and placenames"
authors = [
{ name = "Sveinbjorn Thordarson", email = "[email protected]" },
Expand All @@ -20,6 +20,7 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Topic :: Text Processing :: Linguistic",
Expand Down

0 comments on commit d8e428f

Please sign in to comment.