Skip to content

Commit

Permalink
Merge pull request #147 from pedrocamargo/py312
Browse files Browse the repository at this point in the history
Adds support for Python 3.12
  • Loading branch information
xmedr authored Dec 12, 2024
2 parents e3fd323 + 626da89 commit dd8b5b5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11']
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']

steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions census/core.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import warnings
from functools import wraps, lru_cache
from importlib.metadata import version

import pkg_resources
__version__ = pkg_resources.require("census")[0].version
__version__ = version('census')

ALL = '*'

Expand Down

0 comments on commit dd8b5b5

Please sign in to comment.