Skip to content

Commit

Permalink
Merge branch 'feat/GitHubAction-PythonVersions' into dev/1.2.0 (#55)
Browse files Browse the repository at this point in the history
BUGFIX: these new changes were missing and are now added into the main branch. Pandoc was also missing
  • Loading branch information
cambordas committed Feb 20, 2024
1 parent 2327346 commit caa7f41
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/docs-build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ jobs:
max-parallel: 5

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v5
with:
python-version: 3.8
python-version: "3.10"
- name: Add conda to system path
run: |
# $CONDA is an environment variable pointing to the root of the miniconda directory
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/test-build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,10 @@ jobs:

- name: Install dependencies
run: |
python -m pip install --upgrade pip setuptools wheel
python -m pip install twine
python -m pip install --upgrade pip setuptools wheel twine build
- name: Build package
run: python setup.py sdist bdist_wheel
run: python -m build
- name: Check the package
run: twine check dist/*
- name: Publish to PyPI
Expand Down
1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ dependencies:
- pre-commit
- tqdm
- pyarrow
- pandoc
- conda-forge::webcolors
- conda-forge::openpyxl
- conda-forge::tox
Expand Down

0 comments on commit caa7f41

Please sign in to comment.