Skip to content

Bump setuptools from 75.3.2 to 78.1.1 in /.github in the pip group across 1 directory #267

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion .github/requirements3.10.txt
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ scipy==1.15.2
# via
# -r requirements.txt
# plato-draw
setuptools==78.1.0
setuptools==78.1.1
# via -r tests/requirements.txt
six==1.17.0
# via python-dateutil
Expand Down
2 changes: 1 addition & 1 deletion .github/requirements3.11.txt
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ scipy==1.15.2
# via
# -r requirements.txt
# plato-draw
setuptools==78.1.0
setuptools==78.1.1
# via -r tests/requirements.txt
six==1.17.0
# via python-dateutil
Expand Down
2 changes: 1 addition & 1 deletion .github/requirements3.12.txt
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ scipy==1.15.2
# via
# -r requirements.txt
# plato-draw
setuptools==78.1.0
setuptools==78.1.1
# via -r tests/requirements.txt
six==1.17.0
# via python-dateutil
Expand Down
2 changes: 1 addition & 1 deletion .github/requirements3.13.txt
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ scipy==1.15.2
# via
# -r requirements.txt
# plato-draw
setuptools==78.1.0
setuptools==78.1.1
# via -r tests/requirements.txt
six==1.17.0
# via python-dateutil
Expand Down
2 changes: 1 addition & 1 deletion .github/requirements3.8.txt
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ scipy==1.10.1
# via
# -r requirements.txt
# plato-draw
setuptools==75.3.2
setuptools==78.1.1
# via -r tests/requirements.txt
six==1.17.0
# via python-dateutil
Expand Down
2 changes: 1 addition & 1 deletion .github/requirements3.9.txt
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ scipy==1.13.1
# via
# -r requirements.txt
# plato-draw
setuptools==78.1.0
setuptools==78.1.1
# via -r tests/requirements.txt
six==1.17.0
# via python-dateutil
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8","3.9","3.10","3.11","3.12","3.13"]
python-version: ["3.9","3.10","3.11","3.12","3.13"]
steps:
- name: Checkout
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update_pipfiles.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
- uses: glotzerlab/workflows/setup-uv@5b540415ff505388627649e5671787bc3bf04f02
- name: Set up Python environment
run: |
for v in "3.8" "3.9" "3.10" "3.11" "3.12"; do
for v in "3.9" "3.10" "3.11" "3.12"; do
pipfile=".github/requirements$v.txt"
uv pip compile --python-version $v requirements.txt tests/requirements.txt > $pipfile
done
Expand Down
5 changes: 5 additions & 0 deletions ChangeLog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@ Added

- ``edges``, ``edge_vectors``, and ``edge_lengths`` properties to ``Polygon``

Changed
~~~~~~~

- The minimum required Python version is now 3.9.

v0.10.0 - 2025-02-24
-------------------

Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ To install coxeter and other optional dependencies, choose one of the following:
Requirements
~~~~~~~~~~~~

- Python >= 3.8
- Python >= 3.9
- NumPy >= 1.19.0
- SciPy >= 1.0.0
- rowan >= 1.2.0
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "coxeter"
version = "0.10.0"
requires-python = ">=3.8"
requires-python = ">=3.9"
description = "Tools for creating and manipulating shapes."
readme = "README.rst"
license = { file = "LICENSE" }
Expand Down
Loading