SkillLink 0.1.1__tar.gz → 0.1.2__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: SkillLink
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A Modern way to sync skills
5
5
  Author: Tristan McBride Sr.
6
6
  Author-email: "Tristan McBride Sr." <142635792+TristanMcBrideSr@users.noreply.github.com>
@@ -42,14 +42,11 @@ class SkillLink:
42
42
  if os.path.exists(dstFile):
43
43
  if override:
44
44
  shutil.copy2(srcFile, dstFile)
45
- print(f"Overridden {dstFile} with {srcFile}")
46
45
  logger.info(f"Overridden {dstFile} with {srcFile}")
47
46
  else:
48
- print(f"File {dstFile} already exists locally. Skipping (preserving local).")
49
47
  logger.info(f"File {dstFile} already exists locally. Skipping (preserving local).")
50
48
  continue
51
49
  shutil.copy2(srcFile, dstFile)
52
- print(f"Copied {srcFile} to {dstFile}")
53
50
  logger.info(f"Copied {srcFile} to {dstFile}")
54
51
 
55
52
  def startSync(self, **kwargs):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: SkillLink
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A Modern way to sync skills
5
5
  Author: Tristan McBride Sr.
6
6
  Author-email: "Tristan McBride Sr." <142635792+TristanMcBrideSr@users.noreply.github.com>
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "SkillLink"
7
- version = "0.1.1"
7
+ version = "0.1.2"
8
8
  description = "A Modern way to sync skills"
9
9
  authors = [
10
10
  { name="Tristan McBride Sr.", email = "142635792+TristanMcBrideSr@users.noreply.github.com" },
@@ -3,7 +3,7 @@ from setuptools import setup, find_packages
3
3
 
4
4
  setup(
5
5
  name="SkillLink",
6
- version="0.1.1",
6
+ version="0.1.2",
7
7
  packages=find_packages(),
8
8
  include_package_data=True,
9
9
  install_requires=[
File without changes
File without changes