Skip to content

DOC: updated changelog #50

DOC: updated changelog

DOC: updated changelog #50

Workflow file for this run

# This workflow will install Python dependencies and the latest RC of
# PROJECTNAME from test pypi. This test should be manually run before an RC is
# officially approved and versioned. For more information see:
# https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test install of latest RC from pip
# Uncomment the "on" statement to activate on GitHub Actions
# on: [workflow_dispatch]
jobs:
build:
strategy:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: ["3.11"] # Keep this version at the highest supported Python version
name: Python ${{ matrix.python-version }} on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}

Check failure on line 27 in .github/workflows/pip_rc_install.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/pip_rc_install.yml

Invalid workflow file

You have an error in your yaml syntax on line 27
- name: Install standard dependencies
run: pip install -r requirements.txt
- name: Install PACKAGENAME RC
run: pip install --no-deps --pre -i https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple/ PACKAGENAME
- name: Set up pysat
run: |
mkdir pysatData
python -c "import pysat; pysat.params['data_dirs'] = 'pysatData'"
- name: Check that install imports correctly
run: |
cd ..
python -c "import PACKAGENAME; print(PACKAGENAME.__version__)"