arcane-clients 1.5.2__tar.gz → 1.5.4__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 arcane-clients might be problematic. Click here for more details.

@@ -1,9 +1,9 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.3
2
2
  Name: arcane-clients
3
- Version: 1.5.2
3
+ Version: 1.5.4
4
4
  Summary: Utility functions to interact with our clients_service
5
5
  Author: Arcane
6
- Author-email: product@arcane.run
6
+ Author-email: product@wearcane.com
7
7
  Requires-Python: >=3.6,<4.0
8
8
  Classifier: Programming Language :: Python :: 3
9
9
  Classifier: Programming Language :: Python :: 3.6
@@ -12,9 +12,11 @@ Classifier: Programming Language :: Python :: 3.8
12
12
  Classifier: Programming Language :: Python :: 3.9
13
13
  Classifier: Programming Language :: Python :: 3.10
14
14
  Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
15
17
  Requires-Dist: arcane-core (>=1.6,<2.0)
16
- Requires-Dist: arcane-requests (>=0.3,<0.4)
17
- Requires-Dist: backoff (>=1.10.0,<2.0.0)
18
+ Requires-Dist: arcane-requests (>=0,<1)
19
+ Requires-Dist: backoff (>=1.10.0)
18
20
  Requires-Dist: requests (>=2.23.0,<3.0.0)
19
21
  Description-Content-Type: text/markdown
20
22
 
@@ -1,21 +1,21 @@
1
1
  [tool.poetry]
2
2
  name = "arcane-clients"
3
- version = "1.5.2"
3
+ version = "1.5.4"
4
4
  description = "Utility functions to interact with our clients_service"
5
5
  readme = "README.md"
6
- authors = ["Arcane <product@arcane.run>"]
6
+ authors = ["Arcane <product@wearcane.com>"]
7
7
  packages = [
8
8
  { include = "arcane" }
9
9
  ]
10
10
 
11
11
  [tool.poetry.dependencies]
12
12
  python = "^3.6"
13
- arcane-requests = "^0.3"
13
+ arcane-requests = "^0"
14
14
  arcane-core = "^1.6"
15
15
  requests = "^2.23.0"
16
- backoff = "^1.10.0"
16
+ backoff = ">=1.10.0"
17
17
 
18
- [tool.poetry.dev-dependencies]
18
+ [tool.poetry.group.dev.dependencies]
19
19
 
20
20
  [build-system]
21
21
  requires = ["poetry>=0.12"]
@@ -1,33 +0,0 @@
1
- # -*- coding: utf-8 -*-
2
- from setuptools import setup
3
-
4
- packages = \
5
- ['arcane']
6
-
7
- package_data = \
8
- {'': ['*']}
9
-
10
- install_requires = \
11
- ['arcane-core>=1.6,<2.0',
12
- 'arcane-requests>=0.3,<0.4',
13
- 'backoff>=1.10.0,<2.0.0',
14
- 'requests>=2.23.0,<3.0.0']
15
-
16
- setup_kwargs = {
17
- 'name': 'arcane-clients',
18
- 'version': '1.5.2',
19
- 'description': 'Utility functions to interact with our clients_service',
20
- 'long_description': '# Arcane clients\n\nThis package helps us to request our clients_service\n',
21
- 'author': 'Arcane',
22
- 'author_email': 'product@arcane.run',
23
- 'maintainer': 'None',
24
- 'maintainer_email': 'None',
25
- 'url': 'None',
26
- 'packages': packages,
27
- 'package_data': package_data,
28
- 'install_requires': install_requires,
29
- 'python_requires': '>=3.6,<4.0',
30
- }
31
-
32
-
33
- setup(**setup_kwargs)
File without changes