Skip to content

Commit

Permalink
loosen py versions (#2)
Browse files Browse the repository at this point in the history
  • Loading branch information
jnu authored Jul 16, 2024
1 parent 26f4eaf commit 4feebc7
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 13 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ jobs:
name: Test Python
timeout-minutes: 10
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
env:
wd: ./
steps:
Expand All @@ -22,10 +25,10 @@ jobs:
- name: Set up poetry
run: pipx install poetry

- name: Set up Python3.x
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: 3.12.3
python-version: ${{ matrix.python-version }}
cache: "poetry"
id: py

Expand Down
33 changes: 30 additions & 3 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.poetry]
name = "alligater"
version = "0.1.1"
description = ""
version = "0.1.2"
description = "Randomization and gating library for Python."
authors = ["Joe Nudell <[email protected]>"]
readme = "README.md"
packages = [
Expand All @@ -10,12 +10,12 @@ packages = [
]

[tool.poetry.dependencies]
python = "^3.11"
mmh3 = "^4.1.0"
antlr4-python3-runtime = "^4.13.1"
requests = "^2.32.3"
pyyaml = "^6.0.1"
urllib3 = "^2.2.2"
python = "^3.10"
mmh3 = "^4.1"
antlr4-python3-runtime = "^4.13"
requests = "^2.32"
pyyaml = "^6.0"
urllib3 = "^2.2"


[tool.poetry.group.dev.dependencies]
Expand Down

0 comments on commit 4feebc7

Please sign in to comment.