Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
walchko committed Nov 11, 2023
1 parent be9c15f commit a42fa71
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/python.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
max-parallel: 5
fail-fast: true
matrix:
python-version: ["3.8","3.9","3.10"]
python-version: ["3.8","3.9","3.10","3.11"]
steps:
- uses: actions/checkout@master
- name: Setup Python ${{ matrix.python-version }}
Expand Down
3 changes: 2 additions & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "pyrk"
version = "0.9.5"
version = "2023.11.09"
description = "ode integration rk4 rk runge kutta"
authors = ["walchko <[email protected]>"]
readme = "readme.md"
Expand All @@ -17,6 +17,7 @@ classifiers = [
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Libraries :: Application Frameworks'
Expand Down
3 changes: 2 additions & 1 deletion python/pyrk/pyrk.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
# Copyright (c) 2015 Kevin Walchko
# see LICENSE for full details
##############################################
from dataclasses import dataclass, field
from dataclasses import dataclass
from dataclasses import field
from typing import Callable
import numpy as np

Expand Down

0 comments on commit a42fa71

Please sign in to comment.