Browse Source

fix: compatibility with Python 3.12

tags/v0.10.13
Deuchnord 4 months ago
parent
commit
4d6b980115
2 changed files with 3 additions and 2 deletions
  1. +2
    -1
      .github/workflows/tests.yml
  2. +1
    -1
      pyproject.toml

+ 2
- 1
.github/workflows/tests.yml View File

@@ -35,9 +35,10 @@ jobs:
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}


- name: Prepare tests
- name: Install dependencies
run: | run: |
pip install -U pip poetry pip install -U pip poetry
poetry env use $(which python)
poetry install poetry install


- name: E2E tests - name: E2E tests


+ 1
- 1
pyproject.toml View File

@@ -15,7 +15,7 @@ include = [
kosmorro = 'kosmorro.__main__:main' kosmorro = 'kosmorro.__main__:main'


[tool.poetry.dependencies] [tool.poetry.dependencies]
python = ">=3.8,<3.12"
python = "^3.8"
tabulate = ">=0.8,<0.10" tabulate = ">=0.8,<0.10"
termcolor = ">=1.1,<3.0" termcolor = ">=1.1,<3.0"
kosmorrolib = "^1.0" kosmorrolib = "^1.0"


Loading…
Cancel
Save