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

fix: align declared supported python versions #64

Closed
wants to merge 2 commits into from
Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.11", "3.7" ]
python-version: [ "3.11", "3.9" ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
Expand All @@ -32,7 +32,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.12", "3.11", "3.8" ]
python-version: [ "3.12", "3.11", "3.9" ]

steps:

Expand Down
2 changes: 0 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.7",
]

[tool.poetry.urls]
Expand Down
1 change: 1 addition & 0 deletions src/prefixmaps/ingest/etl_runner.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""ETL logic for retrieving and normalizing upstream contexts."""

from pathlib import Path
from typing import Callable, Dict, Mapping, Union

Expand Down
1 change: 1 addition & 0 deletions src/prefixmaps/ingest/ingest_bioportal.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Simple ETL from bioportal to prefixmaps."""

from typing import Any, Dict, TextIO, Union

from prefixmaps.data import data_path
Expand Down
1 change: 1 addition & 0 deletions src/prefixmaps/ingest/ingest_go.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Ingests the GO prefix registry."""

from typing import TextIO, Union

import requests
Expand Down
1 change: 1 addition & 0 deletions src/prefixmaps/ingest/ingest_jsonld.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Generic JSON-LD ingests."""

import json
from typing import Any, Dict, List, Optional, TextIO, Union

Expand Down
1 change: 1 addition & 0 deletions src/prefixmaps/ingest/ingest_shacl.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""Ingests from triples using the SHACL PrefixDeclarations data model."""

from typing import Any, TextIO, Union

import rdflib
Expand Down
1 change: 1 addition & 0 deletions tests/test_core/test_prefixmaps.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
"""Tests core expansion logic and data.
This serves as "checksums" on the underlying ingested data.
"""

import unittest

import prefixmaps
Expand Down
Loading