My team uses git to manage our workflow, however, I clearly don't have it set up right.
I have my repo setup in my user directory: Repos/project/stuff
However, the actual project and it's site packages are in a different location in the root directory: /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/project/stuff
The specific issue I'm having is: I create a local branch from master, and make a change to a sample.py file which contains dictionaries of hard-coded data (a config file). Then I import sample.py into test.py and print its contents. However, the print contents are not reflective of the local branch where I've made changes, nor are they reflective of the master branch. The import is pulling from the site-packages folder I listed above, which I guess is outdated.
How would I get the import to happen from my local branch? Do I need to place my Repos folder in a different directory? Or is this a path issue?
Thanks in advance.