From 63f49759e5ef45f0e5feaf544f7c1a7bad1db109 Mon Sep 17 00:00:00 2001 From: Gal Topper Date: Tue, 28 Jan 2025 20:31:08 +0800 Subject: [PATCH] Fix test, delete CI on push (#44) --- .github/workflows/ci.yml | 37 ------------------------------------- dev-requirements.txt | 1 + 2 files changed, 1 insertion(+), 37 deletions(-) delete mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml deleted file mode 100644 index 7cd9fc4..0000000 --- a/.github/workflows/ci.yml +++ /dev/null @@ -1,37 +0,0 @@ -# Copyright 2020 Iguazio -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# -name: CI - -on: [push] - -jobs: - test: - runs-on: [ self-hosted, Linux ] - container: - image: python:3.9.18 - - steps: - - uses: actions/checkout@v3 - - name: Install dependencies - run: | - python -m pip install --upgrade pip - make dev-env - - name: lint - run: make lint - - name: test - env: - V3IO_API: ${{ secrets.V3IO_API }} - V3IO_ACCESS_KEY: ${{ secrets.V3IO_ACCESS_KEY }} - run: make test diff --git a/dev-requirements.txt b/dev-requirements.txt index a95c285..7cf568e 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,6 +1,7 @@ black~=22.0 build~=0.1.0 dask[complete]>=2021.10.0 +numpy<2 flake8~=5.0 flake8-bugbear~=22.9 isort~=5.7