Skip to content

Commit 8e5db91

Browse files
committed
Rename default branch
1 parent 856361c commit 8e5db91

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
on:
22
push:
3-
branches: [ master ]
3+
branches: [ main ]
44
pull_request:
5-
branches: [ master ]
5+
branches: [ main ]
66

77

88
jobs:

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import os
22
import setuptools
33

4-
with open("README.md", "r") as fh:
4+
with open("README.md", "r", encoding='utf-8') as fh:
55
long_description = fh.read()
66

7-
with open(os.path.join("rdl_pygments", "__about__.py")) as f:
7+
with open(os.path.join("rdl_pygments", "__about__.py"), encoding='utf-8') as f:
88
v_dict = {}
99
exec(f.read(), v_dict)
1010
version = v_dict['__version__']

0 commit comments

Comments
 (0)