Skip to content

Commit

Permalink
fix: resolve issues with python 3.13 version and also encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
Vinit Kumar committed Jun 10, 2024
1 parent 66d9c38 commit 937715b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/pythonpackage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: [pypy-3.10, '3.10', '3.11' , '3.12', '3.13']
python-version: [pypy-3.10, '3.10', '3.11' , '3.12', '3.13.0-beta.2']
os: [
ubuntu-latest,
windows-latest,
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@
from setuptools import setup, find_packages
from json2xml import __version__

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

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

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

setup_requirements = []
Expand Down

0 comments on commit 937715b

Please sign in to comment.