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

Testsfix #425

Merged
merged 10 commits into from
Mar 4, 2024
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
10 changes: 5 additions & 5 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.10'
python-version: '3.11'
architecture: x64
- run: pip install nox==2022.11.21
- run: pip install nox-poetry==1.0.2
- run: pip install poetry==1.3.1
- run: nox --sessions tests-3.10 coverage
- run: pip install nox==2023.04.22
- run: pip install nox-poetry==1.0.3
- run: pip install poetry==1.8.2
- run: nox --sessions tests-3.11 coverage
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
8 changes: 4 additions & 4 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,17 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.11', '3.10', '3.9', '3.8']
python-version: ['3.11', '3.10']
name: Python ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- run: pip install nox==2022.11.21
- run: pip install nox-poetry==1.0.2
- run: pip install poetry==1.3.1
- run: pip install nox==2023.4.22
- run: pip install nox-poetry==1.0.3
- run: pip install poetry==1.7.1
- run: nox --python ${{ matrix.python-version }}
env:
CODECOV_TOKEN: ${{secrets.CODECOV_TOKEN}}
2 changes: 0 additions & 2 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@
python_versions = [
"3.11",
"3.10",
"3.9",
"3.8",
]
python_version = python_versions[0]

Expand Down
235 changes: 117 additions & 118 deletions poetry.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ documentation = "https://stats-can.readthedocs.io"
keywords = ["statistics", "Canada", "data", "API"]

[tool.poetry.dependencies]
python = ">=3.8,<4.0"
python = ">=3.10,<4.0"
requests = ">=2.20"
h5py = ">=2.10"
tables = ">=3.6"
Expand Down
1 change: 1 addition & 0 deletions src/stats_can/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
from stats_can.sc import update_tables
from stats_can.sc import vectors_to_df
from stats_can.sc import vectors_to_df_local
from stats_can import scwds
from stats_can.scwds import get_changed_cube_list
from stats_can.scwds import get_changed_series_list
from stats_can.scwds import get_cube_metadata
Expand Down
Loading
Loading