removed pandas added requirements.txt and build.yaml

This commit is contained in:
jblu 2024-07-16 02:12:27 -05:00
parent 40dd852cd1
commit bf5a45bb20
3 changed files with 9 additions and 2 deletions

View File

@ -0,0 +1,7 @@
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12.4'
cache: 'pip' # caching pip dependencies
- run: pip install -r requirements.txt

View File

@ -0,0 +1,2 @@
pyodbc==5.1.0
auto-py-to-exe==2.44.1

View File

@ -1,4 +1,3 @@
import pandas
import pyodbc import pyodbc
import os import os
import logging import logging
@ -20,7 +19,6 @@ class Inex:
self.config = load(c) self.config = load(c)
# assign libraries # assign libraries
self.pd = pandas
self.db = pyodbc self.db = pyodbc
self.tm = datetime self.tm = datetime
self.il = logging self.il = logging