Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 12 additions & 10 deletions .github/workflows/python-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,24 @@ name: Python application

on:
push:
branches: [ master ]
branches: [master]
pull_request:
branches: [ master ]
branches: [master]

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v2

- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8.x
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}

- name: Run CI
run: ./toxw
- name: Run CI
run: ./toxw
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,10 @@ integrated with a pull request.

See the documentation in [docs/README.md](docs/README.md).

## Python Versions

Apache Otava is tested against Python 3.8, 3.9, and 3.10.


## License

Expand Down
93 changes: 4 additions & 89 deletions poetry.lock

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

6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ authors = [
"Matt Fleming <matt@nyrkio.com>",
"Piotr Kołaczkowski <pkolaczk@datastax.com>",
"Sean McCarthy <sean.mccarthy.dev@gmail.com>",
"Shaunak Das <ShaunakDas88@users.noreply.github.com>"
"Shaunak Das <ShaunakDas88@users.noreply.github.com>",
]

[tool.poetry.dependencies]
dateparser = "^1.0.0"
expandvars = "^0.6.5"
numpy = "1.24"
python = ">=3.8,<3.13"
python = ">=3.8,<3.11"
python-dateutil = "^2.8.1"
signal-processing-algorithms = "^1.3.2"
"ruamel.yaml" = "=0.17.21"
Expand All @@ -60,7 +60,7 @@ pre-commit = "3.5.0"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning:future",
"ignore::pytest.PytestCollectionWarning"
"ignore::pytest.PytestCollectionWarning",
]

[tool.poetry.scripts]
Expand Down