dissect.archive 1.2.dev1__tar.gz → 1.2.dev3__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 (21) hide show
  1. {dissect_archive-1.2.dev1 → dissect_archive-1.2.dev3}/PKG-INFO +2 -2
  2. {dissect_archive-1.2.dev1 → dissect_archive-1.2.dev3}/dissect.archive.egg-info/PKG-INFO +2 -2
  3. {dissect_archive-1.2.dev1 → dissect_archive-1.2.dev3}/dissect.archive.egg-info/requires.txt +1 -1
  4. {dissect_archive-1.2.dev1 → dissect_archive-1.2.dev3}/pyproject.toml +1 -1
  5. {dissect_archive-1.2.dev1 → dissect_archive-1.2.dev3}/tox.ini +5 -4
  6. {dissect_archive-1.2.dev1 → dissect_archive-1.2.dev3}/.gitattributes +0 -0
  7. {dissect_archive-1.2.dev1 → dissect_archive-1.2.dev3}/COPYRIGHT +0 -0
  8. {dissect_archive-1.2.dev1 → dissect_archive-1.2.dev3}/LICENSE +0 -0
  9. {dissect_archive-1.2.dev1 → dissect_archive-1.2.dev3}/MANIFEST.in +0 -0
  10. {dissect_archive-1.2.dev1 → dissect_archive-1.2.dev3}/README.md +0 -0
  11. {dissect_archive-1.2.dev1 → dissect_archive-1.2.dev3}/dissect/archive/__init__.py +0 -0
  12. {dissect_archive-1.2.dev1 → dissect_archive-1.2.dev3}/dissect/archive/c_wim.py +0 -0
  13. {dissect_archive-1.2.dev1 → dissect_archive-1.2.dev3}/dissect/archive/exceptions.py +0 -0
  14. {dissect_archive-1.2.dev1 → dissect_archive-1.2.dev3}/dissect/archive/wim.py +0 -0
  15. {dissect_archive-1.2.dev1 → dissect_archive-1.2.dev3}/dissect.archive.egg-info/SOURCES.txt +0 -0
  16. {dissect_archive-1.2.dev1 → dissect_archive-1.2.dev3}/dissect.archive.egg-info/dependency_links.txt +0 -0
  17. {dissect_archive-1.2.dev1 → dissect_archive-1.2.dev3}/dissect.archive.egg-info/top_level.txt +0 -0
  18. {dissect_archive-1.2.dev1 → dissect_archive-1.2.dev3}/setup.cfg +0 -0
  19. {dissect_archive-1.2.dev1 → dissect_archive-1.2.dev3}/tests/conftest.py +0 -0
  20. {dissect_archive-1.2.dev1 → dissect_archive-1.2.dev3}/tests/data/basic.wim.gz +0 -0
  21. {dissect_archive-1.2.dev1 → dissect_archive-1.2.dev3}/tests/test_wim.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dissect.archive
3
- Version: 1.2.dev1
3
+ Version: 1.2.dev3
4
4
  Summary: A Dissect module implementing parsers for various archive and backup formats
5
5
  Author-email: Dissect Team <dissect@fox-it.com>
6
6
  License: Affero General Public License v3
@@ -22,7 +22,7 @@ Requires-Python: ~=3.9
22
22
  Description-Content-Type: text/markdown
23
23
  License-File: LICENSE
24
24
  License-File: COPYRIGHT
25
- Requires-Dist: dissect.cstruct<5,>=4.dev
25
+ Requires-Dist: dissect.cstruct<5,>=4
26
26
  Requires-Dist: dissect.util<4,>=3
27
27
  Provides-Extra: dev
28
28
  Requires-Dist: dissect.cstruct<5.0.dev,>=4.0.dev; extra == "dev"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: dissect.archive
3
- Version: 1.2.dev1
3
+ Version: 1.2.dev3
4
4
  Summary: A Dissect module implementing parsers for various archive and backup formats
5
5
  Author-email: Dissect Team <dissect@fox-it.com>
6
6
  License: Affero General Public License v3
@@ -22,7 +22,7 @@ Requires-Python: ~=3.9
22
22
  Description-Content-Type: text/markdown
23
23
  License-File: LICENSE
24
24
  License-File: COPYRIGHT
25
- Requires-Dist: dissect.cstruct<5,>=4.dev
25
+ Requires-Dist: dissect.cstruct<5,>=4
26
26
  Requires-Dist: dissect.util<4,>=3
27
27
  Provides-Extra: dev
28
28
  Requires-Dist: dissect.cstruct<5.0.dev,>=4.0.dev; extra == "dev"
@@ -1,4 +1,4 @@
1
- dissect.cstruct<5,>=4.dev
1
+ dissect.cstruct<5,>=4
2
2
  dissect.util<4,>=3
3
3
 
4
4
  [dev]
@@ -25,7 +25,7 @@ classifiers = [
25
25
  "Topic :: Utilities",
26
26
  ]
27
27
  dependencies = [
28
- "dissect.cstruct>=4.dev,<5",
28
+ "dissect.cstruct>=4,<5",
29
29
  "dissect.util>=3,<4",
30
30
  ]
31
31
  dynamic = ["version"]
@@ -5,10 +5,11 @@ envlist = lint, py3, pypy3
5
5
  # locally installed tox to have a minimum version 3.3.0. This means the names
6
6
  # of the configuration options are still according to the tox 3.x syntax.
7
7
  minversion = 4.4.3
8
- # This version of virtualenv will install setuptools version 65.5.0 and pip
9
- # 22.3. These versions fully support python projects defined only through a
10
- # pyproject.toml file (PEP-517/PEP-518/PEP-621)
11
- requires = virtualenv>=20.16.6
8
+ # This version of virtualenv will install setuptools version 68.2.2 and pip
9
+ # 23.3.1. These versions fully support python projects defined only through a
10
+ # pyproject.toml file (PEP-517/PEP-518/PEP-621). This pip version also support
11
+ # the proper version resolving with (sub-)dependencies defining dev extra's.
12
+ requires = virtualenv>=20.24.6
12
13
 
13
14
  [testenv]
14
15
  extras = dev