diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 4a98a92..eef9624 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -17,7 +17,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - python-version: [3.8, 3.9, "3.10", 3.11, 3.12, 3.13] #, pypy3] + python-version: [3.9, "3.10", 3.11, 3.12, 3.13, 3.14] #, pypy3] steps: - uses: actions/checkout@v2 diff --git a/.gitignore b/.gitignore index 926b741..de7c437 100644 --- a/.gitignore +++ b/.gitignore @@ -1,16 +1,88 @@ +# OS .DS_Store .Trashes -.vscode -*.pyc -venv -winvenv +Thumbs.db +ehthumbs.db +Desktop.ini + +# Editors / IDEs +.vscode/ +.idea/ +*.sublime-workspace +*.sublime-project + +# Python +*.py[cod] +*.pyo +*.pyd __pycache__/ +*.pyc +*.pyd +.Python +pip-selfcheck.json + +# Virtual environments +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ +.venv/ +winvenv/ -build -dist -domonic.egg-info +# Packaging / distribution +build/ +dist/ +*.egg +*.egg-info/ +.domonic-egg-info/ +domonic.egg-info/ +.eggs/ +pip-wheel-metadata/ +wheels/ +*.whl -# sphinx +# Sphinx documentation docs/_build/ +build/docs/ + +# Coverage and test outputs +.coverage +.coverage.* +htmlcov/ +.pytest_cache/ +nosetests.xml +coverage.xml +*.cover + +# Type checkers / caches +.mypy_cache/ +.pytype/ +.pyre/ +.cache/ + +# C extensions / compiled artifacts +*.so +*.dylib +*.dll + +# Jupyter notebooks +.ipynb_checkpoints + +# Environment files / secrets +.env +.env.* +local.settings.json + +# Logs and runtime files +*.log +*.tmp +*.pid + +# Misc +*.pot +*.mo -.coverage \ No newline at end of file +Pipfile.lock +poetry.lock +.cache/pypoetry/ diff --git a/README.md b/README.md index c5b4ed2..4751a78 100755 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ [](https://opensource.org/licenses/MIT) [](https://github.com/byteface) -#### A DOM for making HTML with python 3! (and more) +#### A DOM for making HTML with Python 3! (and more) ### Install @@ -27,7 +27,7 @@ print(html(body(h1('Hello, World!')))) #