Skip to content

Commit

Permalink
[MAINT] Dont require pybind + test python 3.12 (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
larsoner authored Nov 19, 2024
1 parent 893b820 commit c9128f2
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 7 deletions.
10 changes: 10 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
groups:
actions:
patterns:
- "*"
1 change: 1 addition & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,3 +33,4 @@ jobs:
- name: Run ghp-import
run: |
ghp-import -n -p -f doc/_build/html
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
9 changes: 5 additions & 4 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ jobs:
strategy:
max-parallel: 4
matrix:
python-version: ["3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install meegkit and dependencies
Expand All @@ -34,6 +34,7 @@ jobs:
run: |
pytest --cov=./ --cov-report=xml tests/
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: false # optional (default = false)
token: ${{ secrets.CODECOV_TOKEN }}
7 changes: 4 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,10 @@ readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.8"

[project.urls]
homepage = "https://nbara.github.io/python-meegkit"
repository = "https://github.com/nbara/python-meegkit"
documentation = "https://nbara.github.io/python-meegkit/"
tracker = "https://github.com/nbara/python-meegkit/issues/"
documentation = "https://nbara.github.io/python-meegkit"
tracker = "https://github.com/nbara/python-meegkit/issues"

[project.optional-dependencies]
extra = ["pymanopt"]
Expand All @@ -31,7 +32,7 @@ tests = ["pytest", "pytest-cov", "codecov", "codespell", "ruff", "meegkit[extra]
##################################

[build-system]
requires = ["setuptools>=62.0.0", "wheel", "pybind11~=2.10.3"]
requires = ["setuptools>=62.0.0", "wheel"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
Expand Down

0 comments on commit c9128f2

Please sign in to comment.