removed pandas added requirements.txt and build.yaml
This commit is contained in:
parent
40dd852cd1
commit
bf5a45bb20
7
.gitea/workflows/build.yaml
Normal file
7
.gitea/workflows/build.yaml
Normal 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
|
2
.gitea/workflows/requirements.txt
Normal file
2
.gitea/workflows/requirements.txt
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
pyodbc==5.1.0
|
||||||
|
auto-py-to-exe==2.44.1
|
2
inex.py
2
inex.py
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user