Skip to content

Commit

Permalink
Merge remote-tracking branch 'refs/remotes/origin/release/1.0.1' into…
Browse files Browse the repository at this point in the history
… 1.0.x
  • Loading branch information
j-ittner committed Jun 26, 2024
2 parents b7842e1 + aa8dda8 commit 7e9f6ca
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 15 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/artkit-release-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,8 @@ jobs:
needs:
- code_quality_checks
# IF (PR from dev/ to release/) OR (push into release/) OR (scheduled run)
if: startsWith(github.head_ref, 'dev/') || startsWith(github.ref, 'refs/heads/release/') || github.event_name == 'schedule'
# if: startsWith(github.head_ref, 'dev/') || startsWith(github.ref, 'refs/heads/release/') || github.event_name == 'schedule'
if: github.event_name == 'schedule'

steps:
- name: Checkout code
Expand Down
28 changes: 14 additions & 14 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,13 @@ python = ">=3.10.14,<3.11a"
gamma-pytools = "~=3.0.0"
fluxus = "~=1.0.0"
typing_inspect = "~=0.7.1"
openai = "~=1.34"
anthropic = "~=0.28"
groq = "~=0.9"
google-generativeai = "~=0.6"
aiohttp = "~=3.9"
transformers = "~=4.41"
torch = "~=2.3"
openai = "~=1.34.0"
anthropic = "~=0.28.0"
groq = "~=0.9.0"
google-generativeai = "~=0.6.0"
aiohttp = "~=3.9.0"
transformers = "~=4.41.0"
torch = "~=2.3.0"

[build.matrix.max]
matplotlib = "~=3.8"
Expand All @@ -106,13 +106,13 @@ python = ">=3.12,<4a"
gamma-pytools = "~=3.0"
fluxus = "~=1.0"
typing_inspect = "~=0.9"
openai = ">=1.34"
anthropic = ">=0.28"
groq = ">=0.9"
google-generativeai = ">=0.6"
aiohttp = ">=3.9"
transformers = ">=4.41"
torch = ">=2.3"
openai = "~=1.34"
anthropic = "~=0.28"
groq = "~=0.9"
google-generativeai = "~=0.6"
aiohttp = "~=3.9"
transformers = "~=4.41"
torch = "~=2.3"

[tool.black]
required-version = '24.4.2'
Expand Down

0 comments on commit 7e9f6ca

Please sign in to comment.