Skip to content

Commit b6ef985

Browse files
committed
cleanup
1 parent b2cbf50 commit b6ef985

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
fail-fast: false
2929
matrix:
3030
os: [ubuntu-latest, macos-latest, windows-2019]
31-
python-version: ["3.8", "3.9", "3.10"]
31+
python-version: ["3.8", "3.9", "3.10", "3.11"]
3232
steps:
3333
- uses: actions/checkout@v3
3434
- name: Set up Python ${{ matrix.python-version }}

.github/workflows/python-package.yml

+17-17
Original file line numberDiff line numberDiff line change
@@ -13,32 +13,32 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: ['ubuntu-latest']
16-
python-version: [3.8]
16+
python-version: [3.10]
1717
runs-on: ${{ matrix.os }}
1818
environment: package
1919
steps:
2020
- name: Checkout
2121
uses: actions/checkout@v3
22-
- name: Cache conda
23-
uses: actions/cache@v3
24-
with:
25-
path: ~/conda_pkgs_dir
26-
key: conda-${{ matrix.os }}-python-${{ matrix.python-version }}-${{ hashFiles('environment.yml') }}
27-
- name: Setup Miniconda
28-
uses: conda-incubator/setup-miniconda@v2
29-
with:
30-
auto-update-conda: true
31-
auto-activate-base: false
32-
activate-environment: hcrystalball
33-
python-version: ${{ matrix.python-version }}
34-
use-only-tar-bz2: true
22+
# - name: Cache conda
23+
# uses: actions/cache@v3
24+
# with:
25+
# path: ~/conda_pkgs_dir
26+
# key: conda-${{ matrix.os }}-python-${{ matrix.python-version }}-${{ hashFiles('environment.yml') }}
27+
# - name: Setup Miniconda
28+
# uses: conda-incubator/setup-miniconda@v2
29+
# with:
30+
# auto-update-conda: true
31+
# auto-activate-base: false
32+
# activate-environment: hcrystalball
33+
# python-version: ${{ matrix.python-version }}
34+
# use-only-tar-bz2: true
3535
- name: Install from source
3636
# This is required for the pre-commit tests
3737
shell: pwsh
3838
run: pip install .
39-
- name: Conda list
40-
shell: pwsh
41-
run: conda list
39+
# - name: Conda list
40+
# shell: pwsh
41+
# run: conda list
4242
- name: Build
4343
shell: pwsh
4444
run: |

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323

2424
setuptools.setup(
25-
name="AutoGen",
25+
name="pyautogen",
2626
version=__version__,
2727
author="AutoGen",
2828
author_email="[email protected]",

0 commit comments

Comments
 (0)