This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import openpyxl | |
# Load the workbook | |
SOURCE_FILE = 'a2_firstname_lastname.xlsx' | |
SOURCE_PATH = "/Users/avaneesh/Library/CloudStorage/OneDrive-NortheasternUniversity/Cloud-Fall2024/Assignment-2/" | |
TGT_PATH = SOURCE_PATH | |
TGT_FILE_PREFIX = 'a2_' | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This is a copy from https://github.com/Haydnspass/miniforge#rosetta-on-mac-with-apple-silicon-hardware | |
ENV=<env-name> | |
CONDA_SUBDIR=osx-64 conda create -n $ENV # create a new environment | |
conda activate $ENV | |
conda env config vars set CONDA_SUBDIR=osx-64 # subsequent commands use intel packages | |
## In case of error also look at the below script | |
## https://towardsdatascience.com/using-conda-on-an-m1-mac-b2df5608a141 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI tests | |
on: | |
workflow_dispatch: ~ | |
push: | |
branches: | |
- main | |
paths: | |
- '**.py' | |
pull_request: | |
branches: |