simfix 0.1.2__tar.gz → 0.1.3__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 (37) hide show
  1. {simfix-0.1.2/simfix.egg-info → simfix-0.1.3}/PKG-INFO +1 -1
  2. {simfix-0.1.2 → simfix-0.1.3}/pyproject.toml +1 -1
  3. {simfix-0.1.2 → simfix-0.1.3}/simfix/__init__.py +1 -1
  4. {simfix-0.1.2 → simfix-0.1.3/simfix.egg-info}/PKG-INFO +1 -1
  5. {simfix-0.1.2 → simfix-0.1.3}/tests/test_basic.py +1 -1
  6. {simfix-0.1.2 → simfix-0.1.3}/LICENSE +0 -0
  7. {simfix-0.1.2 → simfix-0.1.3}/README.md +0 -0
  8. {simfix-0.1.2 → simfix-0.1.3}/setup.cfg +0 -0
  9. {simfix-0.1.2 → simfix-0.1.3}/simfix/analyzer.py +0 -0
  10. {simfix-0.1.2 → simfix-0.1.3}/simfix/cli.py +0 -0
  11. {simfix-0.1.2 → simfix-0.1.3}/simfix/cmake.py +0 -0
  12. {simfix-0.1.2 → simfix-0.1.3}/simfix/commands.py +0 -0
  13. {simfix-0.1.2 → simfix-0.1.3}/simfix/compatibility.py +0 -0
  14. {simfix-0.1.2 → simfix-0.1.3}/simfix/conda_environment.py +0 -0
  15. {simfix-0.1.2 → simfix-0.1.3}/simfix/conda_fixer.py +0 -0
  16. {simfix-0.1.2 → simfix-0.1.3}/simfix/cuda_docker.py +0 -0
  17. {simfix-0.1.2 → simfix-0.1.3}/simfix/docker_runner.py +0 -0
  18. {simfix-0.1.2 → simfix-0.1.3}/simfix/dockerfile.py +0 -0
  19. {simfix-0.1.2 → simfix-0.1.3}/simfix/fixer.py +0 -0
  20. {simfix-0.1.2 → simfix-0.1.3}/simfix/git_assets.py +0 -0
  21. {simfix-0.1.2 → simfix-0.1.3}/simfix/planner.py +0 -0
  22. {simfix-0.1.2 → simfix-0.1.3}/simfix/pypi.py +0 -0
  23. {simfix-0.1.2 → simfix-0.1.3}/simfix/pyproject.py +0 -0
  24. {simfix-0.1.2 → simfix-0.1.3}/simfix/python_requirements.py +0 -0
  25. {simfix-0.1.2 → simfix-0.1.3}/simfix/recommendations.py +0 -0
  26. {simfix-0.1.2 → simfix-0.1.3}/simfix/repo.py +0 -0
  27. {simfix-0.1.2 → simfix-0.1.3}/simfix/report.py +0 -0
  28. {simfix-0.1.2 → simfix-0.1.3}/simfix/ros_docker.py +0 -0
  29. {simfix-0.1.2 → simfix-0.1.3}/simfix/ros_package.py +0 -0
  30. {simfix-0.1.2 → simfix-0.1.3}/simfix/setup_py.py +0 -0
  31. {simfix-0.1.2 → simfix-0.1.3}/simfix/system.py +0 -0
  32. {simfix-0.1.2 → simfix-0.1.3}/simfix/system_docker.py +0 -0
  33. {simfix-0.1.2 → simfix-0.1.3}/simfix.egg-info/SOURCES.txt +0 -0
  34. {simfix-0.1.2 → simfix-0.1.3}/simfix.egg-info/dependency_links.txt +0 -0
  35. {simfix-0.1.2 → simfix-0.1.3}/simfix.egg-info/entry_points.txt +0 -0
  36. {simfix-0.1.2 → simfix-0.1.3}/simfix.egg-info/requires.txt +0 -0
  37. {simfix-0.1.2 → simfix-0.1.3}/simfix.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: simfix
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: A dependency checker and installation assistant for simulator repositories.
5
5
  Author-email: Habib ur Rehmaan <h.rehmaan96@gmail.com>
6
6
  License-Expression: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "simfix"
7
- version = "0.1.2"
7
+ version = "0.1.3"
8
8
  description = "A dependency checker and installation assistant for simulator repositories."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
@@ -1,3 +1,3 @@
1
1
  """SimFix package."""
2
2
 
3
- __version__ = "0.1.2"
3
+ __version__ = "0.1.3"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: simfix
3
- Version: 0.1.2
3
+ Version: 0.1.3
4
4
  Summary: A dependency checker and installation assistant for simulator repositories.
5
5
  Author-email: Habib ur Rehmaan <h.rehmaan96@gmail.com>
6
6
  License-Expression: MIT
@@ -45,7 +45,7 @@ from simfix.system import (
45
45
 
46
46
 
47
47
  def test_version() -> None:
48
- assert __version__ == "0.1.2"
48
+ assert __version__ == "0.1.3"
49
49
 
50
50
 
51
51
  def test_analyze_python_repo(tmp_path: Path) -> None:
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes