Skip to content
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

Compas dependency #136

Merged
merged 2 commits into from
Oct 16, 2023
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
8 changes: 2 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,9 @@ jobs:
with:
python-version: ${{ matrix.python }}

- name: Installing dependencies
run: |
python -m pip install --upgrade pip
python -m pip install compas@git+https://github.com/compas-dev/compas@main # TODO: remove once new `Part` is released.

- name: Installing package
run: |
python -m pip install --upgrade pip
python -m pip install --no-cache-dir -r requirements-dev.txt

- name: Running linter
Expand All @@ -50,7 +46,7 @@ jobs:

- name: Installing dependencies
run: |
curl -o compas.tar.gz -LJO https://github.com/compas-dev/compas/tarball/main
curl -o compas.tar.gz -LJO https://pypi.debian.net/compas/latest
curl -o ironpython-pytest.tar.gz -LJO https://pypi.debian.net/ironpython-pytest/latest
choco install ironpython --version=2.7.8.1
ipy -X:Frames -m ensurepip
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ jobs:
- name: Install CPython dependencies
run: |
python -m pip install --upgrade pip
python -m pip install compas@git+https://github.com/compas-dev/compas@main # TODO: remove once new `Part` is released.
python -m pip install --no-cache-dir -r requirements-dev.txt

- name: 📃 Generate docs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ironpython.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
curl -o compas.tar.gz -LJO https://github.com/compas-dev/compas/tarball/main
curl -o compas.tar.gz -LJO https://pypi.debian.net/compas/latest
curl -o ironpython-pytest.tar.gz -LJO https://pypi.debian.net/ironpython-pytest/latest
choco install ironpython --version=2.7.8.1
ipy -X:Frames -m ensurepip
Expand Down
8 changes: 1 addition & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,9 @@ jobs:
with:
python-version: "3.10"

- name: Installing dependencies
run: |
python -m pip install --upgrade pip
python -m pip install compas@git+https://github.com/compas-dev/compas@main # TODO: remove once new `Part` is released.

- name: Installing package
run: |
python -m pip install --upgrade pip
python -m pip install --no-cache-dir -r requirements-dev.txt

- name: Running linter
Expand Down Expand Up @@ -79,8 +75,6 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install wheel
python -m pip install cython --config-settings="--build-option=--no-cython-compile"
python -m pip install compas@git+https://github.com/compas-dev/compas@main # TODO: remove once new `Part` is released.
python -m pip install --no-cache-dir -r requirements-dev.txt

- uses: NuGet/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
rtree
# compas @ https://github.com/compas-dev/compas/tarball/05542b4de2229457b19fafdab1a7dd05ab962e1b # TODO: remove when creating a new release
compas==2.0.0a1
Loading