From bf5a45bb20535c6cf6cdbb4f8c3ccbacec2dae6e Mon Sep 17 00:00:00 2001 From: jblu Date: Tue, 16 Jul 2024 02:12:27 -0500 Subject: [PATCH] removed pandas added requirements.txt and build.yaml --- .gitea/workflows/build.yaml | 7 +++++++ .gitea/workflows/requirements.txt | 2 ++ inex.py | 2 -- 3 files changed, 9 insertions(+), 2 deletions(-) create mode 100644 .gitea/workflows/build.yaml create mode 100644 .gitea/workflows/requirements.txt diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml new file mode 100644 index 0000000..82ce81a --- /dev/null +++ b/.gitea/workflows/build.yaml @@ -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 \ No newline at end of file diff --git a/.gitea/workflows/requirements.txt b/.gitea/workflows/requirements.txt new file mode 100644 index 0000000..d739a1a --- /dev/null +++ b/.gitea/workflows/requirements.txt @@ -0,0 +1,2 @@ +pyodbc==5.1.0 +auto-py-to-exe==2.44.1 \ No newline at end of file diff --git a/inex.py b/inex.py index 9d90d45..6e23339 100644 --- a/inex.py +++ b/inex.py @@ -1,4 +1,3 @@ -import pandas import pyodbc import os import logging @@ -20,7 +19,6 @@ class Inex: self.config = load(c) # assign libraries - self.pd = pandas self.db = pyodbc self.tm = datetime self.il = logging