Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pybind11
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
pybind11
Commits
aab70139
Commit
aab70139
authored
Jul 24, 2020
by
Henry Schreiner
Committed by
Henry Schreiner
Jul 26, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci: cache, build wheels on macOS PyPy3
parent
5927c581
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
.github/workflows/ci.yml
+13
-0
tests/requirements.txt
+1
-0
No files found.
.github/workflows/ci.yml
View file @
aab70139
...
...
@@ -57,6 +57,19 @@ jobs:
with
:
python-version
:
${{ matrix.python }}
-
name
:
Cache wheels
if
:
startsWith(runner.os, 'macOS')
uses
:
actions/cache@v2
with
:
# This path is specific to macOS - we really only need it for PyPy NumPy wheels
# See https://github.com/actions/cache/blob/master/examples.md#python---pip
# for ways to do this more generally
path
:
~/Library/Caches/pip
# Look to see if there is a cache hit for the corresponding requirements file
key
:
${{ runner.os }}-pip-${{ hashFiles('requirements.txt') }}
restore-keys
:
|
${{ runner.os }}-pip-
-
name
:
Prepare env
run
:
python -m pip install -r tests/requirements.txt
...
...
tests/requirements.txt
View file @
aab70139
--extra-index-url https://antocuni.github.io/pypy-wheels/manylinux2010/
numpy
; platform_python_implementation!="PyPy" or sys_platform!="darwin" or python_version<"3.0"
numpy
<1.19; platform_python_implementation=="PyPy" and sys_platform=="darwin" and python_version>="3.0"
pytest
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment