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

Updated dependency versions #123

Merged
merged 4 commits into from
Feb 1, 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
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9

Expand All @@ -26,7 +26,7 @@ jobs:
needs: run_linting
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- uses: actions/setup-python@v5
with:
python-version: 3.9

Expand All @@ -47,6 +47,6 @@ jobs:
poetry run pytest tests/ -v --cov-report xml:coverage.xml --cov
poetry run coverage xml

- uses: codecov/codecov-action@v3
- uses: codecov/codecov-action@v4
with:
file: ./coverage.xml
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: actions/checkout@v4

- name: Setup pip cache
uses: actions/cache@v3
uses: actions/cache@v4
if: matrix.language == 'python'
with:
path: ~/.cache/pip
Expand All @@ -35,7 +35,7 @@ jobs:
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -47,4 +47,4 @@ jobs:
# queries: security-extended,security-and-quality

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: "3.9"

Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,3 +165,8 @@ Changes are grouped as follows
- Added the environment name for the Github workflows.
- Dependency updates for source code.

## [0.3.3] - 2024-02-01

### Fixed
- Dependency updates for source code.
- Updated Github actions to use the latest versions.
2 changes: 1 addition & 1 deletion cognite/cdffs/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

from .spec import CdfFileSystem

__version__ = "0.3.2"
__version__ = "0.3.3"
__all__ = ["CdfFileSystem"]

fsspec.register_implementation(CdfFileSystem.protocol, CdfFileSystem)
1,166 changes: 567 additions & 599 deletions poetry.lock

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cognite-cdffs"
version = "0.3.2"
version = "0.3.3"
description = "File System Interface for CDF Files"
license = "Apache-2.0"
authors = ["Infant Alex <[email protected]>"]
Expand All @@ -9,25 +9,25 @@ packages = [
{ include="cognite", from="." },
]
[tool.poetry.group.test.dependencies]
pandas = "^2.1.3"
pyarrow = "^14.0.1"
pandas = "^2.2.0"
pyarrow = "^15.0.0"
zarr = "^2.16.1"
dask = "^2023.11.0"
xarray = "^2023.11.0"
geodatasets = "^2023.3.0"
geopandas = "^0.14.1"
dask = "^2024.1.1"
xarray = "^2024.1.1"
geodatasets = "^2023.12.0"
geopandas = "^0.14.3"

[tool.poetry.group.dev.dependencies]
types-requests = "^2.28.11.5"
pytest-cov = "^4.1.0"
black = "^23.11.0"
black = "^24.1.1"
responses = "^0.24.1"
flake8 = "^6.1.0"
pre-commit = "^3.2.2"
flake8 = "^7.0.0"
pre-commit = "^3.6.0"
flake8-pyproject = "^1.2.3"
twine = "^4.0.2"
toml = "^0.10.2"
sphinx-rtd-theme = "^1.2.2"
sphinx-rtd-theme = "^2.0.0"

[tool.black]
line-length = 120
Expand Down Expand Up @@ -68,12 +68,12 @@ commands =

[tool.poetry.dependencies]
python = ">=3.9.10,<3.13"
cognite-sdk = "^7.3.1"
fsspec = "^2023.10.0"
cognite-sdk = "^7.16.0"
fsspec = "^2023.12.2"
requests = "^2.31.0"
twine = "^4.0.2"
pydantic = "^2.5.1"
python-dotenv = "^1.0.0"
pydantic = "^2.6.0"
python-dotenv = "^1.0.1"
pydantic-settings = "^2.0.3"
tenacity = "^8.2.3"

Expand Down
Loading