Skip to content

Commit

Permalink
Workflow environment updates (#114)
Browse files Browse the repository at this point in the history
* workflow environment updates
* Changelog updates
* adding CODEOWNERS files
  • Loading branch information
vminfant authored Nov 22, 2023
1 parent 3f20a56 commit 22517c4
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 29 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ on:
jobs:
deploy:
runs-on: ubuntu-latest

environment: CD
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,3 +159,9 @@ Changes are grouped as follows
- Fixes to render the readthedocs documentation properly.
- Dependency updates for docs & source code.

## [0.3.2] - 2023-11-21

### Fixed
- Added the environment name for the Github workflows.
- Dependency updates for source code.

7 changes: 7 additions & 0 deletions CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# This is a comment.
# Each line is a file pattern followed by one or more owners.

# All files
* @vminfant

# Repo is currently being maintained by a single member from Global Delivery.
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.1"
__version__ = "0.3.2"
__all__ = ["CdfFileSystem"]

fsspec.register_implementation(CdfFileSystem.protocol, CdfFileSystem)
49 changes: 25 additions & 24 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
@@ -1,6 +1,6 @@
[tool.poetry]
name = "cognite-cdffs"
version = "0.3.1"
version = "0.3.2"
description = "File System Interface for CDF Files"
license = "Apache-2.0"
authors = ["Infant Alex <[email protected]>"]
Expand All @@ -13,7 +13,7 @@ pandas = "^2.1.3"
pyarrow = "^14.0.1"
zarr = "^2.16.1"
dask = "^2023.11.0"
xarray = "^2023.9.0"
xarray = "^2023.11.0"
geodatasets = "^2023.3.0"
geopandas = "^0.14.1"

Expand Down Expand Up @@ -68,7 +68,7 @@ commands =

[tool.poetry.dependencies]
python = ">=3.9.10,<3.13"
cognite-sdk = "^7.1.0"
cognite-sdk = "^7.3.1"
fsspec = "^2023.10.0"
requests = "^2.31.0"
twine = "^4.0.2"
Expand Down

0 comments on commit 22517c4

Please sign in to comment.