Skip to content

Commit

Permalink
use pathlib to read file data
Browse files Browse the repository at this point in the history
  • Loading branch information
jairhenrique committed Dec 11, 2022
1 parent 78b92f8 commit 7f03e4f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,6 @@ jobs:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
django-version: ["3.2", "4.0", "4.1"]
exclude:
# Python 3.6 is not compatible with 4.0
- python-version: "3.6"
django-version: "4.0"
# Python 3.6 is not compatible with 4.1
- python-version: "3.6"
django-version: "4.1"
# Python 3.7 is not compatible with 4.0
- python-version: "3.7"
django-version: "4.0"
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
from pathlib import Path

from setuptools import setup

with open("README.rst") as readme_rst:
readme = readme_rst.read()
readme = Path("README.rst").read_text()

setup(
name="dj-database-url",
Expand Down

0 comments on commit 7f03e4f

Please sign in to comment.