ignore-python 0.1.0__tar.gz → 0.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -20,9 +20,10 @@ jobs:
20
20
  with:
21
21
  python-version: '3.12'
22
22
 
23
- - run: pip install maturin
24
- - run: maturin dev
25
- - run: pdoc --no-show-source 'ignore' '!ignore.ignore'
23
+ - run: python3 -m venv .venv
24
+ - run: source .venv/bin/activate && pip install maturin pdoc
25
+ - run: source .venv/bin/activate && maturin dev
26
+ - run: source .venv/bin/activate && pdoc -o docs/ --no-show-source 'ignore' '!ignore.ignore'
26
27
 
27
28
  - uses: actions/upload-pages-artifact@v3
28
29
  with:
@@ -95,7 +95,7 @@ dependencies = [
95
95
 
96
96
  [[package]]
97
97
  name = "ignore-python"
98
- version = "0.1.0"
98
+ version = "0.1.1"
99
99
  dependencies = [
100
100
  "ignore",
101
101
  "pyo3",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "ignore-python"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  edition = "2021"
5
5
 
6
6
  # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -1,10 +1,11 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: ignore-python
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: Implementation :: CPython
6
6
  Classifier: Programming Language :: Python :: Implementation :: PyPy
7
7
  License-File: LICENSE.txt
8
+ Summary: Rust ignore crate Python bindings
8
9
  Requires-Python: >=3.8
9
10
  Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
10
11
 
@@ -4,6 +4,7 @@ build-backend = "maturin"
4
4
 
5
5
  [project]
6
6
  name = "ignore-python"
7
+ description = "Rust ignore crate Python bindings"
7
8
  requires-python = ">=3.8"
8
9
  classifiers = [
9
10
  "Programming Language :: Rust",
File without changes
File without changes
File without changes
File without changes