Skip to content

Commit

Permalink
progress 14
Browse files Browse the repository at this point in the history
  • Loading branch information
giampaolo committed Jun 21, 2024
1 parent c35c827 commit f0787b3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
fail-fast: false
matrix:
python-version: ["3.11"]
os: [ubuntu-latest, windows-latest, macos-latest]
os: [ubuntu-latest, windows-latest]

steps:
- uses: actions/checkout@v4
Expand Down
17 changes: 13 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,30 @@

PYTHON = python3
ARGS =

# deps needed for testing
PYDEPS = \
psutil \
pyopenssl \
pytest \
setuptools

# deps needed for development
ifndef GITHUB_ACTIONS
PYDEPS += \
black \
check-manifest \
coverage \
psutil \
pylint \
pyopenssl \
pytest \
pytest-cov \
rstcheck \
ruff \
setuptools \
teyit \
toml-sort \
twine
endif

# deps for python 2
PYVER = $(shell $(PYTHON) -c "import sys; print(sys.version_info[0])")
ifeq ($(PYVER), 2)
PYDEPS = \
Expand Down

0 comments on commit f0787b3

Please sign in to comment.