Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
tomsail committed Apr 8, 2024
1 parent dc969ff commit d34848a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/workflows/formatting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ jobs:
uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: "3.7"
- name: Install dependencies
run: |
pip install black flake8
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/setup-python@v2
with:
python-version: "3.x"
python-version: "3.7"
- uses: actions/checkout@v2
- name: Lint with flake8
run: |
Expand All @@ -34,6 +34,9 @@ jobs:
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Update
run: |
sudo apt update
- name: Install CGAL 5
run: |
sudo apt install -y libcgal-dev
Expand Down
3 changes: 3 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[build-system]
requires = ["setuptools>=42", "wheel", "pybind11>=2.6.0", "versioneer-518"]
build-backend = "setuptools.build_meta"

[tool.black]
target-version = ['py37']

0 comments on commit d34848a

Please sign in to comment.