Skip to content

Commit 2f8d810

Browse files
authored
Master to main (#17)
1 parent 114c1f0 commit 2f8d810

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Tests
22

33
on:
44
push:
5-
branches: [master]
5+
branches: [main]
66
pull_request:
7-
branches: [master]
7+
branches: [main]
88
types: [opened, synchronize, reopened, ready_for_review]
99

1010
jobs:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
# Faasm Python Environment [![Tests](https://github.com/faasm/python/workflows/Tests/badge.svg?branch=master)](https://github.com/faasm/python/actions) [![License](https://img.shields.io/github/license/faasm/python.svg)](https://github.com/faasm/python/blob/master/LICENSE.md)
1+
# Faasm Python Environment [![Tests](https://github.com/faasm/python/workflows/Tests/badge.svg?branch=main)](https://github.com/faasm/python/actions) [![License](https://img.shields.io/github/license/faasm/python.svg)](https://github.com/faasm/python/blob/main/LICENSE.md)
22

33
This build cross-compiles CPython and a number of Python modules to WebAssembly
44
for use in [Faasm](https://github.com/faasm/faasm).
55

66
It also provides a [small Python library](pyfaasm/) which uses `ctypes` to
77
support calls to the [Faasm host
8-
interface](https://github.com/faasm/faasm/blob/master/docs/host_interface.md).
8+
interface](https://faasm.readthedocs.io/en/latest/source/host_interface.html).
99

1010
## Development
1111

1212
Most use of this project is via the Faasm [development
13-
environment](https://github.com/faasm/faasm/blob/master/docs/development.md).
13+
environment](https://faasm.readthedocs.io/en/latest/source/development.html).
1414

1515
You should only need the instructions below if you want to:
1616

pyfaasm/pyfaasm/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# https://docs.python.org/3/library/ctypes.html
66
#
77
# Faasm host interface:
8-
# https://github.com/faasm/faasm/blob/master/include/faasm/host_interface.h
8+
# https://github.com/faasm/faasm/blob/main/include/faasm/host_interface.h
99

1010
env_cache = dict()
1111

0 commit comments

Comments
 (0)