Skip to content

Commit

Permalink
ci: fix python publishing by adding README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Manuthor committed Mar 21, 2024
1 parent 47dd16a commit 485b239
Show file tree
Hide file tree
Showing 14 changed files with 24 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:

jobs:
cloudproof_rust:
uses: Cosmian/reusable_workflows/.github/workflows/cloudproof.yml@fix/publish_python
uses: Cosmian/reusable_workflows/.github/workflows/cloudproof.yml@develop
with:
project-name: cloudproof_rust
toolchain: stable
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

All notable changes to this project will be documented in this file.

## [3.0.2] - 2024-03-21

### Ci

- Fix publishing on PyPI: adding README.md

## [3.0.1] - 2024-03-20

### Ci
Expand Down
1 change: 1 addition & 0 deletions crates/aesgcm/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Cosmian Cloudproof AESGCM library
2 changes: 2 additions & 0 deletions crates/aesgcm/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ build-backend = "maturin"
python-source = "python"

[project]
description = "Cosmian Cloudproof AESGCM library"
readme = "README.md"
name = "cloudproof_aesgcm"
requires-python = ">=3.7"
classifiers = [
Expand Down
2 changes: 2 additions & 0 deletions crates/anonymization/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ build-backend = "maturin"
python-source = "python"

[project]
description = "Cosmian Cloudproof Anonymization library"
readme = "README.md"
name = "cloudproof_anonymization"
requires-python = ">=3.7"
classifiers = [
Expand Down
2 changes: 1 addition & 1 deletion crates/cloudproof/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cloudproof"
version = "3.0.1"
version = "3.0.2"
authors = [
"Théophile Brézot<[email protected]>",
"Emmanuel Coste<[email protected]>",
Expand Down
1 change: 1 addition & 0 deletions crates/cover_crypt/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Cosmian Python Covercrypt library
2 changes: 2 additions & 0 deletions crates/cover_crypt/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ build-backend = "maturin"
python-source = "python"

[project]
description = "Cosmian Cloudproof Covercrypt library"
readme = "README.md"
name = "cover_crypt"
requires-python = ">=3.7"
classifiers = [
Expand Down
2 changes: 0 additions & 2 deletions crates/cover_crypt/src/pyo3/py_abe_policy.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
use std::result::Result;

use cosmian_cover_crypt::abe_policy::{
Attribute as AttributeRust, DimensionBuilder, EncryptionHint, Policy as PolicyRust,
};
Expand Down
1 change: 1 addition & 0 deletions crates/ecies/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Cosmian Python ECIES library
2 changes: 2 additions & 0 deletions crates/ecies/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ build-backend = "maturin"
python-source = "python"

[project]
readme = "README.md"
description = "Cosmian Cloudproof ECIES library"
name = "cloudproof_ecies"
requires-python = ">=3.7"
classifiers = [
Expand Down
1 change: 1 addition & 0 deletions crates/findex/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Cosmian Python Findex Library
2 changes: 2 additions & 0 deletions crates/findex/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ build-backend = "maturin"
python-source = "python"

[project]
readme = "README.md"
description = "Cosmian Cloudproof Findex library"
name = "findex"
requires-python = ">=3.7"
classifiers = [
Expand Down
2 changes: 2 additions & 0 deletions crates/fpe/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ build-backend = "maturin"
python-source = "python"

[project]
description = "Cosmian Cloudproof FPE library"
readme = "README.md"
name = "cloudproof_fpe"
requires-python = ">=3.7"
classifiers = [
Expand Down

0 comments on commit 485b239

Please sign in to comment.