Skip to content

Commit

Permalink
Merge pull request #93 from OpenRarity/python-311
Browse files Browse the repository at this point in the history
Python 311 support
  • Loading branch information
snuderl authored Oct 28, 2022
2 parents eb6a7a1 + f21af58 commit 4f9be7b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/actions/setup-actions/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ runs:
steps:
- uses: actions/setup-python@v3
with:
python-version: "3.10.3"
python-version: ${{ matrix.python-version }}

- name: Install Poetry
uses: snok/install-poetry@v1
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ jobs:
unit-tests:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: ["3.10", "3.11"]

permissions:
id-token: write
contents: read
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,14 @@ classifiers = [
"Topic :: Software Development :: Libraries",
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]

[tool.poetry.dependencies]
numpy = "^1.23.1"
pandas = "^1.4.3"
pydantic = "^1.9.1"
python = ">=3.10,<3.11"
python = ">=3.10,<3.12"
requests = "^2.28.1"
scipy = "^1.9.0"

Expand Down

0 comments on commit 4f9be7b

Please sign in to comment.