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
2 changes: 1 addition & 1 deletion ci/environment-3.10.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ dependencies:
- numpy
- ruff
- tabulate
- xarray
- xarray[complete]
- pip:
- codecov
2 changes: 1 addition & 1 deletion ci/environment-3.11.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ dependencies:
- numpy
- ruff
- tabulate
- xarray
- xarray[complete]
- pip:
- codecov
2 changes: 1 addition & 1 deletion ci/environment-3.12.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ dependencies:
- numpy
- ruff
- tabulate
- xarray
- xarray[complete]
- pip:
- codecov
2 changes: 1 addition & 1 deletion ci/environment-3.13.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ dependencies:
- numpy
- ruff
- tabulate
- xarray
- xarray[complete]
- pip:
- codecov
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ dev = [
"types-PyYAML",
"types-tabulate",
"versioneer",
"xarray[complete]"
]
test = [
"intake"
Expand Down Expand Up @@ -82,7 +83,7 @@ parentdir_prefix = "access-intake-utils-"
omit = ["*/_version.py", "*/data/__init__.py"]

[tool.ruff]
target-version = "py310"
target-version = "py39"
exclude = [
".bzr",
".direnv",
Expand All @@ -103,7 +104,8 @@ exclude = [
"dist",
"node_modules",
"venv",
"src/access_intake_utils/_version.py",
"versioneer.py",
"_version.py",
]
# E402: module level import not at top of file
# E501: line too long - let black worry about that
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import versioneer
from setuptools import setup

import versioneer

setup(
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
Expand Down
4 changes: 2 additions & 2 deletions src/access_intake_utils/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@

from . import _version
__version__ = _version.get_versions()['version']

__version__ = _version.get_versions()["version"]
Loading
Loading