Skip to content

Commit

Permalink
remove importlib.metadata import and bump to 0.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
apulverizer committed Apr 15, 2023
1 parent a2d7ec4 commit 7ff0603
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@ on:
branches:
- main

push:
branches:
- main
push

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "Allagash"
version = "0.4.2"
version = "0.4.3"
authors = [
{ name="Aaron Pulver", email="apulverizer@gmail.com" },
]
Expand Down
4 changes: 1 addition & 3 deletions src/allagash/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import importlib.metadata

from .problem import (
Problem,
UnboundedException,
Expand All @@ -18,4 +16,4 @@
"Coverage",
]

__version__ = importlib.metadata.version(__package__ or __name__)
__version__ = "0.4.3"

0 comments on commit 7ff0603

Please sign in to comment.