fastbencode 0.3.5__tar.gz → 0.3.6__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.
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "fastbencode"
3
- version = "0.3.5"
3
+ version = "0.3.6"
4
4
  edition = "2021"
5
5
  authors = ["Jelmer Vernooij <jelmer@jelmer.uk>"]
6
6
  license = "Apache-2.0"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fastbencode
3
- Version: 0.3.5
3
+ Version: 0.3.6
4
4
  Summary: Implementation of bencode with optional fast Rust extensions
5
5
  Maintainer-email: Breezy Developers <breezy-core@googlegroups.com>
6
6
  License-Expression: Apache-2.0
@@ -21,7 +21,7 @@ License-File: COPYING
21
21
  Provides-Extra: rust
22
22
  Requires-Dist: setuptools-rust>=1.0.0; extra == "rust"
23
23
  Provides-Extra: dev
24
- Requires-Dist: ruff==0.12.4; extra == "dev"
24
+ Requires-Dist: ruff==0.13.0; extra == "dev"
25
25
  Dynamic: license-file
26
26
 
27
27
  fastbencode
@@ -18,7 +18,7 @@
18
18
 
19
19
  from typing import Type
20
20
 
21
- __version__ = (0, 3, 5)
21
+ __version__ = (0, 3, 6)
22
22
 
23
23
 
24
24
  Bencached: Type
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fastbencode
3
- Version: 0.3.5
3
+ Version: 0.3.6
4
4
  Summary: Implementation of bencode with optional fast Rust extensions
5
5
  Maintainer-email: Breezy Developers <breezy-core@googlegroups.com>
6
6
  License-Expression: Apache-2.0
@@ -21,7 +21,7 @@ License-File: COPYING
21
21
  Provides-Extra: rust
22
22
  Requires-Dist: setuptools-rust>=1.0.0; extra == "rust"
23
23
  Provides-Extra: dev
24
- Requires-Dist: ruff==0.12.4; extra == "dev"
24
+ Requires-Dist: ruff==0.13.0; extra == "dev"
25
25
  Dynamic: license-file
26
26
 
27
27
  fastbencode
@@ -1,6 +1,6 @@
1
1
 
2
2
  [dev]
3
- ruff==0.12.4
3
+ ruff==0.13.0
4
4
 
5
5
  [rust]
6
6
  setuptools-rust>=1.0.0
@@ -33,7 +33,7 @@ GitHub = "https://github.com/breezy-team/fastbencode"
33
33
  [project.optional-dependencies]
34
34
  rust = ["setuptools-rust>=1.0.0"]
35
35
  dev = [
36
- "ruff==0.12.4"
36
+ "ruff==0.13.0"
37
37
  ]
38
38
 
39
39
  [tool.setuptools]
@@ -1,6 +1,5 @@
1
1
  #!/usr/bin/python3
2
2
 
3
- import sys
4
3
 
5
4
  from setuptools import setup
6
5
  from setuptools_rust import Binding, RustExtension
@@ -11,7 +10,7 @@ setup(
11
10
  "fastbencode._bencode_rs",
12
11
  binding=Binding.PyO3,
13
12
  py_limited_api=False,
14
- optional=sys.platform == "win32",
13
+ optional=True,
15
14
  )
16
15
  ],
17
16
  )
File without changes
File without changes
File without changes
File without changes
File without changes