Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add smoke test to run on python 3.9-3.12 #8

Merged
merged 3 commits into from
Jul 24, 2024
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
8 changes: 8 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,16 @@ jobs:
name: Install the package
runs-on: "ubuntu-latest"
needs: build
strategy:
fail-fast: false
matrix:
python_version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python_version }}

- uses: actions/download-artifact@v4
with:
name: wheel
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "opensuse-distro-aliases"
version = "0.1.2"
version = "0.1.3"
description = "Aliases for active openSUSE releases"
authors = ["Dan Čermák <[email protected]>"]
license = "MIT"
Expand Down
3 changes: 2 additions & 1 deletion src/opensuse_distro_aliases/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from typing import Dict
from typing import List
from typing import Literal
from typing import Optional
from typing import TypedDict
from typing import Union

Expand All @@ -25,7 +26,7 @@ class Distro:
namever: str

#: main project on build.opensuse.org from which this distribution is built
obs_project_name: str | None
obs_project_name: Optional[str]


class _Release(TypedDict):
Expand Down