Skip to content

Commit

Permalink
Only requiring Python 3.6 instead of 3.9. Also updated github action …
Browse files Browse the repository at this point in the history
…versions.
  • Loading branch information
ballenspectric committed Jun 18, 2024
1 parent 6de2d6d commit 489dae1
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
python-version: ['3.10']
name: Python ${{ matrix.python-version }} testing
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
Expand All @@ -32,8 +32,8 @@ jobs:
permissions:
id-token: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
Expand Down
24 changes: 21 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "Apache-2.0"
readme = "README.md"

[tool.poetry.dependencies]
python = "^3.9"
python = "^3.6"
numpy = "^1.20.1"

[tool.poetry.scripts]
Expand All @@ -19,8 +19,26 @@ requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.pylint.'MESSAGES CONTROL']
max-line-length = 150
disable = "too-many-nested-blocks,too-many-branches,too-many-statements,R0801,R0902,R0903,R0911,R0913,R0914,C0103,C0114,C0115,C0116,C0123,C0301,C0302,fixme"
max-line-length = 120
disable = [
"too-many-nested-blocks",
"too-many-branches",
"too-many-statements",
"R0801",
"R0902",
"R0903",
"R0911",
"R0913",
"R0914",
"C0103",
"C0114",
"C0115",
"C0116",
"C0123",
"C0301",
"C0302",
"fixme",
]

[tool.tox]
legacy_tox_ini = """
Expand Down

0 comments on commit 489dae1

Please sign in to comment.