We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 856361c commit 8e5db91Copy full SHA for 8e5db91
.github/workflows/build.yml
@@ -1,8 +1,8 @@
1
on:
2
push:
3
- branches: [ master ]
+ branches: [ main ]
4
pull_request:
5
6
7
8
jobs:
setup.py
@@ -1,10 +1,10 @@
import os
import setuptools
-with open("README.md", "r") as fh:
+with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
-with open(os.path.join("rdl_pygments", "__about__.py")) as f:
+with open(os.path.join("rdl_pygments", "__about__.py"), encoding='utf-8') as f:
v_dict = {}
9
exec(f.read(), v_dict)
10
version = v_dict['__version__']
0 commit comments