Skip to content
Snippets Groups Projects
Commit 252df252 authored by Jon Crall's avatar Jon Crall
Browse files

Fix requirements

parent c0366610
Branches unified
No related tags found
1 merge request!7Start branch for dev/0.1.6
Pipeline #314401 passed
......@@ -65,7 +65,7 @@ stages:
- echo "MOD_NAME=$MOD_NAME"
- echo "WHEEL_FPATH=$WHEEL_FPATH"
- echo "MOD_VERSION=$MOD_VERSION"
- pip install "$MOD_NAME[$INSTALL_EXTRAS]==$MOD_VERSION" -f wheelhouse
- pip install --prefer-binary "$MOD_NAME[$INSTALL_EXTRAS]==$MOD_VERSION" -f wheelhouse
- |-
mkdir -p sandbox && cd sandbox && pytest -s --xdoctest --xdoctest-verbose=3 --cov-config ../pyproject.toml --cov-report html --cov-report term --cov="$MOD_NAME" "$(python -c "import ubelt; print(ubelt.modname_to_modpath('${MOD_NAME}'))")" ../tests && cd ..
.test_full-loose_template: &test_full-loose_template
......@@ -93,7 +93,7 @@ stages:
- echo "MOD_NAME=$MOD_NAME"
- echo "WHEEL_FPATH=$WHEEL_FPATH"
- echo "MOD_VERSION=$MOD_VERSION"
- pip install "$MOD_NAME[$INSTALL_EXTRAS]==$MOD_VERSION" -f wheelhouse
- pip install --prefer-binary "$MOD_NAME[$INSTALL_EXTRAS]==$MOD_VERSION" -f wheelhouse
- |-
mkdir -p sandbox && cd sandbox && pytest -s --xdoctest --xdoctest-verbose=3 --cov-config ../pyproject.toml --cov-report html --cov-report term --cov="$MOD_NAME" "$(python -c "import ubelt; print(ubelt.modname_to_modpath('${MOD_NAME}'))")" ../tests && cd ..
.test_minimal-strict_template: &test_minimal-strict_template
......@@ -121,7 +121,7 @@ stages:
- echo "MOD_NAME=$MOD_NAME"
- echo "WHEEL_FPATH=$WHEEL_FPATH"
- echo "MOD_VERSION=$MOD_VERSION"
- pip install "$MOD_NAME[$INSTALL_EXTRAS]==$MOD_VERSION" -f wheelhouse
- pip install --prefer-binary "$MOD_NAME[$INSTALL_EXTRAS]==$MOD_VERSION" -f wheelhouse
- |-
mkdir -p sandbox && cd sandbox && pytest -s --xdoctest --xdoctest-verbose=3 --cov-config ../pyproject.toml --cov-report html --cov-report term --cov="$MOD_NAME" "$(python -c "import ubelt; print(ubelt.modname_to_modpath('${MOD_NAME}'))")" ../tests && cd ..
.test_full-strict_template: &test_full-strict_template
......@@ -149,7 +149,7 @@ stages:
- echo "MOD_NAME=$MOD_NAME"
- echo "WHEEL_FPATH=$WHEEL_FPATH"
- echo "MOD_VERSION=$MOD_VERSION"
- pip install "$MOD_NAME[$INSTALL_EXTRAS]==$MOD_VERSION" -f wheelhouse
- pip install --prefer-binary "$MOD_NAME[$INSTALL_EXTRAS]==$MOD_VERSION" -f wheelhouse
- |-
mkdir -p sandbox && cd sandbox && pytest -s --xdoctest --xdoctest-verbose=3 --cov-config ../pyproject.toml --cov-report html --cov-report term --cov="$MOD_NAME" "$(python -c "import ubelt; print(ubelt.modname_to_modpath('${MOD_NAME}'))")" ../tests && cd ..
build/cp36-linux-x86_64:
......
# .readthedocs.yml
# Read the Docs configuration file
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
#
#
# See Also:
# https://readthedocs.org/dashboard/cmd_queue/advanced/
# Required
version: 2
# Build documentation in the docs/ directory with Sphinx
sphinx:
configuration: docs/source/conf.py
# Build documentation with MkDocs
#mkdocs:
# configuration: mkdocs.yml
# Optionally build your docs in additional formats such as PDF and ePub
formats: all
# Optionally set the version of Python and requirements required to build your docs
python:
version: 3.7
install:
- requirements: requirements/docs.txt
- method: pip
path: .
#extra_requirements:
# - docs
#conda:
# environment: environment.yml
- requirements: requirements/docs.txt
- method: pip
path: .
......@@ -17,9 +17,8 @@ pandas>=1.5.0 ; python_version < '4.0' and python_version >= '3.11' # Pyt
pandas>=1.4.0 ; python_version < '3.11' and python_version >= '3.10' # Python 3.10
pandas>=1.4.0 ; python_version < '3.10' and python_version >= '3.9' # Python 3.9
pandas>=1.4.0 ; python_version < '3.9' and python_version >= '3.8' # Python 3.8
pandas>=1.1.4 ; python_version < '3.8' and python_version >= '3.7.1' # Python 3.7.1
pandas>=0.1.4 ; python_version < '3.7.1' and python_version >= '3.7' # Python 3.7
pandas>=0.1.4 ; python_version < '3.6.1' and python_version >= '3.6' # Python 3.6
pandas>=1.3.5 ; python_version < '3.8' and python_version >= '3.7' # Python 3.7
pandas>=1.1.5 ; python_version < '3.7' and python_version >= '3.6' # Python 3.6
pint>=0.18 ; python_version >= '3.7' # Python 3.7+
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment