Skip to content

Commit

Permalink
Merge pull request #136 from gramaziokohler/compas_dependency
Browse files Browse the repository at this point in the history
Compas dependency
  • Loading branch information
chenkasirer authored Oct 16, 2023
2 parents 182ac98 + ac9b993 commit e6bc6ae
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 16 deletions.
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

0 comments on commit e6bc6ae

Please sign in to comment.