Skip to content

Commit

Permalink
ci: remove shpinx as direct dependency (#945)
Browse files Browse the repository at this point in the history
  • Loading branch information
dfguerrerom authored Sep 20, 2024
1 parent 08b4d25 commit 9163dbb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python -m build
twine upload dist/*
twine upload dist/* --verbose
- name: merge in release
uses: devmasx/merge-branch@master
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11"]
python-version: ["3.9", "3.10", "3.11"]
include:
- os: macos-latest # macos test
python-version: "3.10"
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ build:
- pip install --find-links=https://girder.github.io/large_image_wheels --no-cache GDAL
# patch deprecated and sphinx version to mimic nox build
post_install:
- pip install git+https://github.com/sphinx-doc/sphinx.git
- pip install sphinx
pre_build:
- sphinx-apidoc --force --module-first --templatedir=docs/source/_templates/apidoc -o docs/source/modules ./sepal_ui

Expand Down
6 changes: 2 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,11 @@ classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = [
# building widgets
"tomli",
Expand All @@ -33,7 +32,6 @@ dependencies = [
# read local data
"rioxarray",
"dask", # used by rioxarray in the inspector
'geopandas==0.13.2; python_version == "3.8"',
'geopandas>=0.14.0; python_version > "3.8"',
"matplotlib",
"jupyter-server-proxy", # required for localtileserver
Expand Down Expand Up @@ -89,7 +87,7 @@ test = [
"tomli",
]
doc = [
"sphinx @ git+https://github.com/sphinx-doc/sphinx.git",
"sphinx",
"jupyter-sphinx",
"pydata-sphinx-theme",
"sphinx-notfound-page",
Expand Down

0 comments on commit 9163dbb

Please sign in to comment.