From 33a80262b0bd4b5a547f13132f1ffc353e439629 Mon Sep 17 00:00:00 2001 From: Jonathan Walker Date: Fri, 11 Oct 2024 09:22:01 -0400 Subject: [PATCH] chore: remove anaconda files --- .conda/meta.yaml | 46 ---------------------------------------------- CHANGELOG.md | 3 +++ 2 files changed, 3 insertions(+), 46 deletions(-) delete mode 100644 .conda/meta.yaml diff --git a/.conda/meta.yaml b/.conda/meta.yaml deleted file mode 100644 index 86f9704f..00000000 --- a/.conda/meta.yaml +++ /dev/null @@ -1,46 +0,0 @@ -{% set data = load_setup_py_data(setup_file='../setup.py', from_recipe_dir=True) %} -{% set name = "sasctl" %} -{% set version = data.get('version') %} - -package: - name: {{ name|lower }} - version: {{ data.version }} - -source: - path: .. - -build: - entry_points: - - sasctl = sasctl.utils.cli:main - noarch: python - script: {{ PYTHON }} -m pip install . -vv - number: 0 - -requirements: - host: - - python >=3.6 - - pip - run: - - dill - - python >=3.6 - - pandas - - requests - - pyyaml - - packaging - -test: - imports: - - sasctl - commands: - - pip check - - sasctl --help - requires: - - pip - -about: - home: https://github.com/sassoftware/python-sasctl/ - summary: "Python package and CLI for user-friendly integration with SAS Viya" - license: Apache-2.0 - license_file: LICENSE - doc_url: https://sassoftware.github.io/python-sasctl/ - dev_url: https://github.com/sassoftware/python-sasctl/ \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 32c73e5b..8463c1ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ v1.10.7 (2024-10-02) -------------------- +**Changes** + - Due to licensing restrictions, the `sasctl` package will no longer be available through Anaconda. + **Bugfixes** - Fixed a bug that caused an error when performing SSL verification without a CA bundle specified.