Skip to content

Commit 937715b

Browse files
author
Vinit Kumar
committed
fix: resolve issues with python 3.13 version and also encoding
1 parent 66d9c38 commit 937715b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: [pypy-3.10, '3.10', '3.11' , '3.12', '3.13']
15+
python-version: [pypy-3.10, '3.10', '3.11' , '3.12', '3.13.0-beta.2']
1616
os: [
1717
ubuntu-latest,
1818
windows-latest,

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@
55
from setuptools import setup, find_packages
66
from json2xml import __version__
77

8-
with open("README.rst") as readme_file:
8+
with open("README.rst", encoding="utf-8") as readme_file:
99
readme = readme_file.read()
1010

11-
with open("HISTORY.rst") as history_file:
11+
with open("HISTORY.rst", encoding="utf-8") as history_file:
1212
history = history_file.read()
1313

14-
with open("requirements.in") as requirements_in:
14+
with open("requirements.in", encoding="utf-8") as requirements_in:
1515
requirements = [requirements_in.read()]
1616

1717
setup_requirements = []

0 commit comments

Comments
 (0)