Skip to content

Commit

Permalink
fix version problems
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvanmele committed Mar 2, 2024
1 parent c54dda6 commit 2921af7
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 11 deletions.
9 changes: 7 additions & 2 deletions env_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@ name: cra
channels:
- conda-forge
dependencies:
- python >=3.9,<3.11
- git
- python ==3.9
- pip
- compas
- compas_view2
- ipopt
- pyomo ==6.4.2
- matplotlib
- pip:
- -r requirements.txt
- git+https://github.com/compas-dev/compas_view2.git@compas2
- compas_assembly >=0.7.0
- -r requirements-dev.txt
- -e .
9 changes: 7 additions & 2 deletions env_osx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@ name: cra
channels:
- conda-forge
dependencies:
- python >=3.9,<3.11
- git
- python ==3.9
- pip
- compas
- compas_view2
- ipopt
- pyomo ==6.4.2
- matplotlib
- pip:
- -r requirements.txt
- git+https://github.com/compas-dev/compas_view2.git@compas2
- compas_assembly >=0.7.0
- -r requirements-dev.txt
- -e .
9 changes: 7 additions & 2 deletions env_win.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@ name: cra
channels:
- conda-forge
dependencies:
- python >=3.9,<3.11
- git
- python ==3.9
- pip
- compas
- compas_view2
- ipopt ==3.11.1
- pyomo ==6.4.2
- matplotlib
- pip:
- -r requirements.txt
- git+https://github.com/compas-dev/compas_view2.git@compas2
- compas_assembly >=0.7.0
- -r requirements-dev.txt
- -e .
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ keywords = []
authors = [{ name = "Gene Ting-Chun Kao", email = "kao@arch.ethz.ch" }]
license = { file = "LICENSE" }
readme = "README.md"
requires-python = ">=3.9,<3.11"
requires-python = ">=3.9"
dynamic = ['dependencies', 'optional-dependencies', 'version']
classifiers = [
"Development Status :: 4 - Beta",
Expand All @@ -22,6 +22,7 @@ classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]

[project.urls]
Expand Down
2 changes: 1 addition & 1 deletion requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ attrs >=17.4
black >=22.12.0
bump-my-version
compas_invocations2
compas_notebook
# compas_notebook
invoke >=0.14
ruff
sphinx_compas2_theme
Expand Down
5 changes: 2 additions & 3 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
pyomo ==6.4.2
compas >=2.0
compas_assembly >=0.7.0
# compas >=2.0
# compas_assembly >=0.7.0

0 comments on commit 2921af7

Please sign in to comment.