Skip to content

Commit

Permalink
fix: resolve pkg_resources deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
RDWimmers committed Dec 22, 2023
1 parent 05d720b commit 1e343da
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/pygef/_version.py
Original file line number Diff line number Diff line change
@@ -1,7 +1 @@
import pkg_resources

try:
__version__ = pkg_resources.get_distribution("pygef").version
# during CI
except pkg_resources.DistributionNotFound:
__version__ = "unknown"
__version__ = "0.10.0"

0 comments on commit 1e343da

Please sign in to comment.