Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
python-version: 3.12

- name: Install dependencies
run: python -m pip install setuptools wheel
run: python -m pip install --upgrade pip build

# This step is only necessary for testing purposes and for TestPyPI
- name: Fix up version string for TestPyPI
Expand All @@ -42,7 +42,7 @@ jobs:

- name: Build source and wheel distributions
run: |
python setup.py sdist bdist_wheel
python -m build
echo ""
echo "Generated files:"
ls -lh dist/
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pytest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.11", "3.12"]
python-version: ["3.11", "3.12", "3.13"]
runs-on: [ubuntu-latest]
experimental: [false]
steps:
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ classifiers =
Operating System :: OS Independent
Programming Language :: Python
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
Topic :: Scientific/Engineering :: Visualization
platforms = OS Independent

Expand All @@ -26,7 +26,7 @@ packages = find:
platforms = any
py_modules = _echoshader_version
include_package_data = True
python_requires = >=3.9, <3.13
python_requires = >=3.11, <3.14
setup_requires =
setuptools_scm

Expand Down