From b7b529be86d220a7a6d0a56687fb92c61d1c690d Mon Sep 17 00:00:00 2001 From: Ryan May Date: Wed, 29 Jun 2022 01:38:56 -0600 Subject: [PATCH] CI: Remove unused CircleCI config We're not using this and not likely to any time soon. It's also very out of date relative to how we handle a lot of things. --- .circleci/config.yml | 46 -------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index dc87dce7ddd..00000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,46 +0,0 @@ -# Python CircleCI 2.0 configuration file -# -# Check https://circleci.com/docs/2.0/language-python/ for more details -# -version: 2 -jobs: - build: - docker: - - image: circleci/python:3-stretch - - working_directory: ~/repo - - steps: - - checkout - - # Download and cache dependencies - - restore_cache: - keys: - - v1-dependencies-{{ checksum "setup.py" }} - # fallback to using the latest cache if no exact match is found - - v1-dependencies- - - - run: - name: install dependencies - command: | - sudo apt-get install libgeos-dev libproj-dev - python3 -m venv venv - . venv/bin/activate - pip install --upgrade pytest - pip install ".[test]" "shapely<1.5.17.post1" --upgrade --upgrade-strategy=eager -f https://unidata-python.s3.amazonaws.com/wheelhouse/index.html - - - save_cache: - paths: - - ./venv - key: v1-dependencies-{{ checksum "setup.py" }} - - # run tests! - - run: - name: run tests - command: | - . venv/bin/activate - pytest -s --flake8 --mpl - - - store_artifacts: - path: test-reports - destination: test-reports