lief 0.8.1__zip → 0.8.3__zip

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 lief might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: lief
3
- Version: 0.8.1
3
+ Version: 0.8.3
4
4
  Summary: LIEF is a library to instrument executable formats
5
5
  Home-page: https://lief.quarkslab.com
6
6
  Author: Romain Thomas
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: lief
3
- Version: 0.8.1
3
+ Version: 0.8.3
4
4
  Summary: LIEF is a library to instrument executable formats
5
5
  Home-page: https://lief.quarkslab.com
6
6
  Author: Romain Thomas
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env python
2
2
  # -*- coding: utf-8 -*-
3
3
 
4
- MIN_SETUPTOOLS_VERSION = "36.4.0"
4
+ MIN_SETUPTOOLS_VERSION = "31.0.0"
5
5
  import setuptools
6
6
  from distutils.version import LooseVersion
7
7
  assert (LooseVersion(setuptools.__version__) >= LooseVersion(MIN_SETUPTOOLS_VERSION)), "LIEF requires a setuptools version '{}' or higher".format(MIN_SETUPTOOLS_VERSION)
@@ -57,7 +57,7 @@ if in_source_package:
57
57
  lief_version = "{:d}.{:d}.{:d}".format(int(major), int(minor), int(patch))
58
58
  is_branch = len(branch.strip()) > 0
59
59
  else:
60
- lief_version = "0.8.1"
60
+ lief_version = "0.8.3"
61
61
 
62
62
  package_description = open(os.path.join(package_dir, "README")).read()
63
63
 
@@ -86,7 +86,7 @@ class lief_sdist(sdist):
86
86
 
87
87
  def run(self):
88
88
  if self.dev:
89
- suffix = '.dev-{:s}'.format("f4e2ae0")
89
+ suffix = '.dev-{:s}'.format("18d5b75")
90
90
  self.distribution.metadata.version += suffix
91
91
  sdist.run(self)
92
92
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes