Skip to content

Commit d1cc88d

Browse files
committed
Update conda package upload workflow action.
1 parent daeadcc commit d1cc88d

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/publish_package.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,23 @@ jobs:
3636
TWINE_USERNAME: __token__
3737
TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }}
3838

39+
3940
# Conda package building and publishing
4041
- name: Install Conda and Conda-Build
4142
run: |
4243
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
4344
bash miniconda.sh -b -p $HOME/miniconda
4445
source $HOME/miniconda/etc/profile.d/conda.sh
4546
conda update --yes conda
46-
conda install --yes conda-build
47+
conda install --yes conda-build # Install conda-build
4748
4849
- name: Build Conda package
4950
run: |
5051
conda build .
52+
shell: /usr/bin/bash -e {0}
53+
env:
54+
pythonLocation: /opt/hostedtoolcache/Python/3.12.0/x64
55+
LD_LIBRARY_PATH: /opt/hostedtoolcache/Python/3.12.0/x64/lib
5156

5257
- name: Convert Conda package for other platforms
5358
run: |

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "readmeai"
7-
version = "0.4.071"
7+
version = "0.4.072"
88
description = "🚀 Generate beautiful README files from the terminal, powered by OpenAI's GPT language models 💫"
99
authors = ["Eli <[email protected]>"]
1010
license = "MIT"
@@ -51,8 +51,6 @@ tenacity = "^8.2.2"
5151
tiktoken = "^0.4.0"
5252
toml = "^0.10.2"
5353
pydantic = ">=1.10.9,<2.0.0"
54-
tornado = "^6.3.3"
55-
asyncio = "^3.4.3"
5654
aiohttp = "^3.8.5"
5755
click = "^8.1.7"
5856

0 commit comments

Comments
 (0)