Skip to content

Commit

Permalink
Only install dev deps on CI (#81)
Browse files Browse the repository at this point in the history
* Only install dev deps on CI

* Build docs with 3.10
  • Loading branch information
amyreese authored Jan 28, 2024
1 parent e7cb029 commit aaed5fd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install
run: make install
run: make EXTRAS=dev install
- name: Test
run: make test
- name: Lint
Expand Down
2 changes: 1 addition & 1 deletion .readthedocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ sphinx:
build:
os: ubuntu-22.04
tools:
python: "3.8"
python: "3.10"
python:
install:
- method: pip
Expand Down
3 changes: 2 additions & 1 deletion makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
EXTRAS:=dev,docs
SRCS:=stdlibs

.venv:
Expand All @@ -9,7 +10,7 @@ venv: .venv

install:
python -m pip install -U pip
python -m pip install -Ue .[dev,docs]
python -m pip install -Ue .[$(EXTRAS)]

release: lint test clean
flit publish
Expand Down

0 comments on commit aaed5fd

Please sign in to comment.