Skip to content

Commit

Permalink
Merge pull request #38 from ReproNim/enh/py-version
Browse files Browse the repository at this point in the history
remove 3.7, add 3.11 & 3.12
  • Loading branch information
yibeichan authored May 2, 2024
2 parents 105489b + 7f378ec commit b227e12
Show file tree
Hide file tree
Showing 5 changed files with 1,038 additions and 424 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
reproschema/_version.py export-subst
6 changes: 3 additions & 3 deletions .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
python-version: [3.7, 3.8, 3.9, "3.10"]
python-version: [3.8, 3.9, "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
Expand Down
4 changes: 4 additions & 0 deletions reproschema/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,7 @@ def set_logger_level(lgr, level):
lgr.warning(
"Failed to check for a more recent version available with etelemetry: %s", exc
)

from . import _version

__version__ = _version.get_versions()["version"]
Loading

0 comments on commit b227e12

Please sign in to comment.