Skip to content

Commit

Permalink
sdist without heliport.data
Browse files Browse the repository at this point in the history
Fixes uploading sdist to PyPi
  • Loading branch information
ZJaume committed Dec 4, 2024
1 parent 58ff50e commit c1a0885
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@
# Wheels
wheels*

# Binarized models
heliport-*.data/
data/

# Generated by Cargo
# will have compiled files and executables
debug/
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v0.8.1
### Fixed
- `sdist` project layout without `heliport.data`

## v0.8.0
### Added
- Model creation command.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "heliport"
version = "0.8.0"
version = "0.8.1"
edition = "2021"
rust-version = "1.71"

Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["maturin>=1.5,<2.0"]
requires = ["maturin>=1.7.9,<2.0"]
build-backend = "maturin"

[project]
Expand Down Expand Up @@ -35,4 +35,3 @@ heliport = "heliport:cli_run"
[tool.maturin]
features = ["pyo3/extension-module"]
data = "heliport.data"
exclude = ["heliport.data/.gitkeep"]

0 comments on commit c1a0885

Please sign in to comment.