From b6ef985d4fbc0a4dfff3ba2300d237dc0196ec5d Mon Sep 17 00:00:00 2001 From: Chi Wang Date: Tue, 19 Sep 2023 17:50:43 +0000 Subject: [PATCH] cleanup --- .github/workflows/build.yml | 2 +- .github/workflows/python-package.yml | 34 ++++++++++++++-------------- setup.py | 2 +- 3 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index c60975c88603..84bb525776e6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,7 +28,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, macos-latest, windows-2019] - python-version: ["3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - uses: actions/checkout@v3 - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 568a49be3978..067dd9115d97 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -13,32 +13,32 @@ jobs: strategy: matrix: os: ['ubuntu-latest'] - python-version: [3.8] + python-version: [3.10] runs-on: ${{ matrix.os }} environment: package steps: - name: Checkout uses: actions/checkout@v3 - - name: Cache conda - uses: actions/cache@v3 - with: - path: ~/conda_pkgs_dir - key: conda-${{ matrix.os }}-python-${{ matrix.python-version }}-${{ hashFiles('environment.yml') }} - - name: Setup Miniconda - uses: conda-incubator/setup-miniconda@v2 - with: - auto-update-conda: true - auto-activate-base: false - activate-environment: hcrystalball - python-version: ${{ matrix.python-version }} - use-only-tar-bz2: true + # - name: Cache conda + # uses: actions/cache@v3 + # with: + # path: ~/conda_pkgs_dir + # key: conda-${{ matrix.os }}-python-${{ matrix.python-version }}-${{ hashFiles('environment.yml') }} + # - name: Setup Miniconda + # uses: conda-incubator/setup-miniconda@v2 + # with: + # auto-update-conda: true + # auto-activate-base: false + # activate-environment: hcrystalball + # python-version: ${{ matrix.python-version }} + # use-only-tar-bz2: true - name: Install from source # This is required for the pre-commit tests shell: pwsh run: pip install . - - name: Conda list - shell: pwsh - run: conda list + # - name: Conda list + # shell: pwsh + # run: conda list - name: Build shell: pwsh run: | diff --git a/setup.py b/setup.py index d9ae8805cc6e..a5613912d875 100644 --- a/setup.py +++ b/setup.py @@ -22,7 +22,7 @@ setuptools.setup( - name="AutoGen", + name="pyautogen", version=__version__, author="AutoGen", author_email="auto-gen@outlook.com",