comrak 0.0.4__tar.gz → 0.0.5__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.

Potentially problematic release.


This version of comrak might be problematic. Click here for more details.

@@ -4,4 +4,4 @@
4
4
  - `maturin develop --release`
5
5
  - `git push`
6
6
  - `gh run download -p wheel*`
7
- - `mv wheel* dist/ && rm -rf wheel* && pdm publish --no-build`
7
+ - `mv wheel*/* dist/ && rm -rf wheel* && pdm publish --no-build`
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: comrak
3
- Version: 0.0.4
3
+ Version: 0.0.5
4
4
  Classifier: Intended Audience :: Developers
5
5
  Classifier: License :: OSI Approved :: MIT License
6
6
  Classifier: Programming Language :: Rust
@@ -14,6 +14,8 @@ Classifier: Programming Language :: Python :: 3.12
14
14
  Classifier: Programming Language :: Python :: 3.13
15
15
  Classifier: Programming Language :: Python :: 3.9
16
16
  Requires-Dist: maturin[patchelf]>=1.8.2 ; extra == 'dev'
17
+ Requires-Dist: pdm>=2.22.3 ; extra == 'dev'
18
+ Requires-Dist: pdm-bump>=0.9.10 ; extra == 'dev'
17
19
  Requires-Dist: pre-commit>=4.1.0 ; extra == 'dev'
18
20
  Requires-Dist: markdown>=3.7 ; extra == 'bench'
19
21
  Requires-Dist: markdown2>=2.5.3 ; extra == 'bench'
@@ -89,5 +91,5 @@ Maintained by [lmmx](https://github.com/lmmx). Contributions welcome!
89
91
 
90
92
  ## License
91
93
 
92
- This project is licensed under the [MIT License](https://opensource.org/licenses/MIT).
94
+ Licensed under the 2-Clause BSD License. See [LICENSE](https://github.com/lmmx/comrak/blob/master/LICENSE) for all the details.
93
95
 
@@ -59,4 +59,4 @@ Maintained by [lmmx](https://github.com/lmmx). Contributions welcome!
59
59
 
60
60
  ## License
61
61
 
62
- This project is licensed under the [MIT License](https://opensource.org/licenses/MIT).
62
+ Licensed under the 2-Clause BSD License. See [LICENSE](https://github.com/lmmx/comrak/blob/master/LICENSE) for all the details.
@@ -34,7 +34,7 @@ keywords = [
34
34
  ]
35
35
  readme = "README.md"
36
36
  requires-python = ">=3.9"
37
- version = "0.0.4"
37
+ version = "0.0.5"
38
38
 
39
39
  [project.license]
40
40
  file = "LICENSE"
@@ -42,7 +42,9 @@ file = "LICENSE"
42
42
  [project.optional-dependencies]
43
43
  dev = [
44
44
  "maturin[patchelf]>=1.8.2",
45
- "pre-commit>=4.1.0"
45
+ "pdm>=2.22.3",
46
+ "pdm-bump>=0.9.10",
47
+ "pre-commit>=4.1.0",
46
48
  ]
47
49
  bench = [
48
50
  "markdown>=3.7",