skinoptics 0.0.1b9__py3-none-any.whl → 0.0.2__py3-none-any.whl

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.
skinoptics/__init__.py CHANGED
@@ -35,13 +35,13 @@ __all__ = ['utils', 'dataframes',
35
35
 
36
36
  __version__major = '0'
37
37
  __version__minor = '0'
38
- __version__micro = '1'
39
- __version__suffix = 'b9'
38
+ __version__micro = '2'
39
+ #__version__suffix = 'b1'
40
40
 
41
41
  __author__ = "Victor Lima"
42
42
  __copyright__ = "Copyright (c) 2024-2025 Victor Lima"
43
43
  __license__ = "GNU General Public License v3.0"
44
44
  __maintainer__ = "Victor Lima"
45
- __version__ = '.'.join((__version__major, __version__minor, __version__micro)) + __version__suffix
45
+ __version__ = '.'.join((__version__major, __version__minor, __version__micro)) # + __version__suffix
46
46
  __email__ = "victorporto@ifsc.usp.br, victor.lima@ufscar.br"
47
47
  __status__ = "Development"
@@ -16,7 +16,6 @@
16
16
  | along with this program. If not, see <https://www.gnu.org/licenses/>.
17
17
 
18
18
  | Victor Lima
19
- | victorporto\@ifsc.usp.br
20
19
  | victor.lima\@ufscar.br
21
20
  | victorportog.github.io
22
21