Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

change version to 3.9 till 3.12 #382

Closed
wants to merge 3 commits into from
Closed
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
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: "Setup Python, Poetry and Dependencies"
uses: packetcoders/action-setup-cache-python-poetry@main
with:
python-version: 3.8
python-version: 3.9
poetry-version: 1.2.2

# Run benchmakrs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- name: "Setup Python, Poetry and Dependencies"
uses: packetcoders/action-setup-cache-python-poetry@main
with:
python-version: 3.8
python-version: 3.9
poetry-version: 1.2.2

- name: Install notebook dependencies
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- name: "Setup Python, Poetry and Dependencies"
uses: packetcoders/action-setup-cache-python-poetry@main
with:
python-version: 3.8
python-version: 3.9
poetry-version: 1.2.2

# Linting steps, excute all linters even if one fails
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
- name: "Setup Python, Poetry and Dependencies"
uses: zain-sohail/action-setup-cache-python-poetry@main
with:
python-version: 3.8
python-version: 3.9
poetry-version: 1.2.2
working-directory: sed-processor

Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
- name: "Setup Python, Poetry and Dependencies"
uses: zain-sohail/action-setup-cache-python-poetry@main
with:
python-version: 3.8
python-version: 3.9
poetry-version: 1.2.2
working-directory: sed-processor

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/testing_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ jobs:
- name: "Setup Python, Poetry and Dependencies"
uses: packetcoders/action-setup-cache-python-poetry@main
with:
python-version: 3.8
python-version: 3.9
poetry-version: 1.2.2

# Run pytest with coverage report, saving to xml
- name: Run tests on python 3.8
- name: Run tests on python 3.9
run: |
poetry run pytest --cov --cov-report xml:cobertura.xml --full-trace --show-capture=no -sv -n auto tests/

Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/testing_multiversion.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: unit tests [Python 3.8|3.9|3.10|3.11]
# Tests for all supported versions [Python 3.9|3.10|3.11|3.12]
name: Unit Tests

on:
workflow_dispatch:
Expand All @@ -12,7 +13,7 @@ jobs:
# Using matrix strategy
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
runs-on: ubuntu-latest
steps:
# Check out repo and set up Python
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: "Setup Python, Poetry and Dependencies"
uses: packetcoders/action-setup-cache-python-poetry@main
with:
python-version: 3.8
python-version: 3.9
poetry-version: 1.2.2

# update poetry lockfile
Expand Down
1,684 changes: 756 additions & 928 deletions poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ keywords = ["sed", "mpes", "flash", "arpes"]
license = "MIT"

[tool.poetry.dependencies]
python = ">=3.8, <3.12"
python = ">=3.9, <3.13"
bokeh = ">=2.4.2"
dask = ">=2021.12.0"
dask = {extras = ["dataframe"], version = ">=2021.12.0"}
fastdtw = ">=0.3.4"
fastparquet = ">=0.8.0"
h5py = ">=3.6.0"
Expand Down
Loading