Skip to content

Commit

Permalink
Release 0.3.0 (hopefully)
Browse files Browse the repository at this point in the history
  • Loading branch information
omad committed Dec 6, 2024
1 parent 6ac1689 commit 89becc8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 27 deletions.
12 changes: 2 additions & 10 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,23 +19,15 @@ test: ## Test the code with pytest
@uv run python -m pytest --doctest-modules

.PHONY: build
build: clean-build ## Build wheel file
build: clean ## Build wheel file
@echo "🚀 Creating wheel file"
@uvx --from build pyproject-build --installer uv

.PHONY: clean-build
.PHONY: clean
clean-build: ## Clean build artifacts
@echo "🚀 Removing build artifacts"
@uv run python -c "import shutil; import os; shutil.rmtree('dist') if os.path.exists('dist') else None"

.PHONY: publish
publish: ## Publish a release to PyPI.
@echo "🚀 Publishing."
@uvx twine upload --repository-url https://upload.pypi.org/legacy/ dist/*

.PHONY: build-and-publish
build-and-publish: build publish ## Build and publish.

.PHONY: help
help:
@uv run python -c "import re; \
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[project]
version = "0.2.0.dev0"
version = "0.3.0"
name = "odc-loader"
description = "Tooling for constructing xarray objects from parsed metadata"
readme = "README.md"
Expand Down
16 changes: 0 additions & 16 deletions requirements-dev.txt

This file was deleted.

0 comments on commit 89becc8

Please sign in to comment.