From 43ac448acb16e49a16e89ceba455157fdaa130a8 Mon Sep 17 00:00:00 2001 From: Bartosz Sokorski Date: Wed, 9 Aug 2023 20:49:25 +0200 Subject: [PATCH] Cleanup old unused files (#705) --- Makefile | 45 --------------------------------------------- build-wheels.sh | 27 --------------------------- codecov.yml | 7 ------- 3 files changed, 79 deletions(-) delete mode 100755 build-wheels.sh delete mode 100644 codecov.yml diff --git a/Makefile b/Makefile index 468cd9a1..a12389a9 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,3 @@ -# This file is part of orator -# https://github.com/sdispater/orator - -# Licensed under the MIT license: -# http://www.opensource.org/licenses/MIT-license -# Copyright (c) 2015 Sébastien Eustace - -PENDULUM_RELEASE := $$(sed -n -E "s/VERSION = \"(.+)\"/\1/p" pendulum/version.py) # lists all available targets list: @@ -16,43 +8,6 @@ list: # required for list no_targets__: -# install all dependencies -setup: setup-python - -# test your application (tests in the tests/ directory) -test: - @py.test --cov=pendulum --cov-config .coveragerc tests/ -sq - -linux_release: wheels_x64 wheels_i686 - -release: wheels_x64 wheels_i686 wheel - -publish: - @poetry publish --no-build - -tar: - python setup.py sdist --formats=gztar - -wheel: - @poetry build -v - -wheels_x64: build_wheels_x64 - -wheels_i686: build_wheels_i686 - -build_wheels_x64: - docker pull quay.io/pypa/manylinux1_x86_64 - docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_x86_64 /io/build-wheels.sh - -build_wheels_i686: - docker pull quay.io/pypa/manylinux1_i686 - docker run --rm -v `pwd`:/io quay.io/pypa/manylinux1_i686 /io/build-wheels.sh - -# run tests against all supported python versions -tox: - @tox - - lint-rust: cargo fmt --all -- --check cargo clippy --tests -- -D warnings diff --git a/build-wheels.sh b/build-wheels.sh deleted file mode 100755 index 1c8f1cb5..00000000 --- a/build-wheels.sh +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/bash -set -e -x - -cd $(dirname $0) - -export PATH=/opt/python/cp38-cp38/bin/:$PATH - -curl -fsS -o get-poetry.py https://raw.githubusercontent.com/sdispater/poetry/master/get-poetry.py -/opt/python/cp38-cp38/bin/python get-poetry.py --preview -y -rm get-poetry.py - -for PYBIN in /opt/python/cp3*/bin; do - if [ "$PYBIN" == "/opt/python/cp34-cp34m/bin" ]; then - continue - fi - if [ "$PYBIN" == "/opt/python/cp35-cp35m/bin" ]; then - continue - fi - rm -rf build - "${PYBIN}/python" $HOME/.poetry/bin/poetry build -vvv -done - -cd dist -for whl in *.whl; do - auditwheel repair "$whl" - rm "$whl" -done diff --git a/codecov.yml b/codecov.yml deleted file mode 100644 index 3cbba287..00000000 --- a/codecov.yml +++ /dev/null @@ -1,7 +0,0 @@ -comment: false - -coverage: - status: - patch: - default: - enabled: false