Skip to content

Commit

Permalink
Support Python3.10 and bump up version to 0.2.0 (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-sili authored May 1, 2023
1 parent e5eed13 commit 3d1dacb
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,16 @@ jobs:

runs-on: ubuntu-latest

strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v3
- name: Set up Python 3.8
- name: Set up ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: "3.8"
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
Expand Down
2 changes: 1 addition & 1 deletion anaconda/meta.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package:
name: snowflake_telemetry_python
version: "0.1.0"
version: "0.2.0"

source:
path: /tmp/anaconda_workspace/src
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Database",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
Expand Down
2 changes: 1 addition & 1 deletion src/snowflake/telemetry/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
#

"""Update this for the versions."""
VERSION = (0, 1, 0)
VERSION = (0, 2, 0)

0 comments on commit 3d1dacb

Please sign in to comment.