diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6d9c1ba..8c6e8c7 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -65,15 +65,6 @@ jobs: skip-existing: true verbose: true - - name: Build and publish to Conda-forge - uses: crabisoft/publish-conda@v1.0.0 - if: steps.release.outputs.released == 'true' - with: - sub-directory: 'conda' - platforms: 'noarch' - token: ${{ secrets.ANACONDA_TOKEN }} - - windows-build: needs: [release] runs-on: windows-latest diff --git a/conda/meta.yaml b/conda/meta.yaml deleted file mode 100644 index 9e1be0b..0000000 --- a/conda/meta.yaml +++ /dev/null @@ -1,51 +0,0 @@ -{% set pyproject = load_file_data('pyproject.toml') %} - -package: - name: pdbstore - version: {{ pyproject['project']['version'] }} - -source: - path: .. - -build: - noarch: python - number: 0 - script: python setup.py install - -requirements: - build: - {% for req in pyproject['project']['dependencies'] %} - - {{ req }} - {% endfor %} - run: - {% for req in pyproject['project']['dependencies'] %} - - {{ req }} - {% endfor %} - -test: - source_files: - - pdbstore/ - - tests/ - - setup.py - imports: - - pdbstore - commands: - - pytest ./tests/unit - - pytest ./tests/cli - requires: - - mock - - coverage - - pytest==7.1.2 - - pytest-cov - - pytest-subprocess - - wheel==0.41.2 - - setuptools>=61.0.0 - -about: - home: {{ pyproject['project']['urls']['homepage'] }} - license: MIT - license_file: COPYING - summary: {{ pyproject['project']['description'] }} - dev_url: {{pyproject['project']['urls']['homepage'] }} - doc_url: {{ pyproject['project']['urls']['documentation'] }} - doc_source_url: {{ pyproject['project']['urls']['homepage'] + '/README.rst' }} \ No newline at end of file