python-redux 0.17.1__tar.gz → 0.17.1a0__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.
Files changed (20) hide show
  1. {python_redux-0.17.1 → python_redux-0.17.1a0}/PKG-INFO +3 -3
  2. {python_redux-0.17.1 → python_redux-0.17.1a0}/pyproject.toml +3 -3
  3. {python_redux-0.17.1 → python_redux-0.17.1a0}/LICENSE +0 -0
  4. {python_redux-0.17.1 → python_redux-0.17.1a0}/README.md +0 -0
  5. {python_redux-0.17.1 → python_redux-0.17.1a0}/redux/__init__.py +0 -0
  6. {python_redux-0.17.1 → python_redux-0.17.1a0}/redux/autorun.py +0 -0
  7. {python_redux-0.17.1 → python_redux-0.17.1a0}/redux/basic_types.py +0 -0
  8. {python_redux-0.17.1 → python_redux-0.17.1a0}/redux/combine_reducers.py +0 -0
  9. {python_redux-0.17.1 → python_redux-0.17.1a0}/redux/main.py +0 -0
  10. {python_redux-0.17.1 → python_redux-0.17.1a0}/redux/py.typed +0 -0
  11. {python_redux-0.17.1 → python_redux-0.17.1a0}/redux/serialization_mixin.py +0 -0
  12. {python_redux-0.17.1 → python_redux-0.17.1a0}/redux/side_effect_runner.py +0 -0
  13. {python_redux-0.17.1 → python_redux-0.17.1a0}/redux_pytest/__init__.py +0 -0
  14. {python_redux-0.17.1 → python_redux-0.17.1a0}/redux_pytest/fixtures/__init__.py +0 -0
  15. {python_redux-0.17.1 → python_redux-0.17.1a0}/redux_pytest/fixtures/event_loop.py +0 -0
  16. {python_redux-0.17.1 → python_redux-0.17.1a0}/redux_pytest/fixtures/monitor.py +0 -0
  17. {python_redux-0.17.1 → python_redux-0.17.1a0}/redux_pytest/fixtures/snapshot.py +0 -0
  18. {python_redux-0.17.1 → python_redux-0.17.1a0}/redux_pytest/fixtures/store.py +0 -0
  19. {python_redux-0.17.1 → python_redux-0.17.1a0}/redux_pytest/fixtures/wait_for.py +0 -0
  20. {python_redux-0.17.1 → python_redux-0.17.1a0}/redux_pytest/plugin.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-redux
3
- Version: 0.17.1
3
+ Version: 0.17.1a0
4
4
  Summary: Redux implementation for Python
5
5
  Home-page: https://github.com/sassanh/python-redux/
6
6
  License: Apache-2.0
@@ -12,10 +12,10 @@ Classifier: License :: OSI Approved :: Apache Software License
12
12
  Classifier: Programming Language :: Python :: 3
13
13
  Classifier: Programming Language :: Python :: 3.11
14
14
  Classifier: Programming Language :: Python :: 3.12
15
- Requires-Dist: pyright (>=1.1.383,<2.0.0)
15
+ Requires-Dist: pyright (>=1.1.378,<2.0.0)
16
16
  Requires-Dist: python-immutable (>=1.1.1,<2.0.0)
17
17
  Requires-Dist: python-strtobool (>=1.0.0,<2.0.0)
18
- Requires-Dist: ruff (>=0.6.9,<0.7.0)
18
+ Requires-Dist: ruff (>=0.6.3,<0.7.0)
19
19
  Project-URL: Repository, https://github.com/sassanh/python-redux/
20
20
  Description-Content-Type: text/markdown
21
21
 
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "python-redux"
3
- version = "0.17.1"
3
+ version = "0.17.1a0"
4
4
  description = "Redux implementation for Python"
5
5
  authors = ["Sassan Haradji <sassanh@gmail.com>"]
6
6
  license = "Apache-2.0"
@@ -14,8 +14,8 @@ packages = [{ include = "redux" }, { include = "redux_pytest" }]
14
14
  python = "^3.11"
15
15
  python-immutable = "^1.1.1"
16
16
  python-strtobool = "^1.0.0"
17
- pyright = "^1.1.383"
18
- ruff = "^0.6.9"
17
+ pyright = "^1.1.378"
18
+ ruff = "^0.6.3"
19
19
 
20
20
  [tool.poetry.group.dev]
21
21
  optional = true
File without changes
File without changes