Skip to content

Commit 3644bad

Browse files
committed
updating py versions
1 parent 3b1bd8a commit 3644bad

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

.circleci/config.yml .github/workflows/config.yml

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
version: 2 # use CircleCI 2.0
2+
on:
3+
push:
4+
branches:
5+
- main
6+
27
jobs: # A basic unit of work in a run
38
build: # runs not using Workflows must have a `build` job as entry point
49
# directory where steps are run

.github/workflows/python-package.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
fail-fast: false
1414
matrix:
15-
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
15+
python-version: ["3.9", "3.10", "3.11"]
1616

1717
steps:
1818
- uses: actions/checkout@v2 # check out source code to working directory

.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
repos:
22
- repo: https://github.com/pre-commit/pre-commit-hooks
3-
rev: v2.1.0
3+
rev: v5.0.0
44
hooks:
55
- id: trailing-whitespace
66
- id: end-of-file-fixer
@@ -11,7 +11,7 @@ repos:
1111
rev: stable
1212
hooks:
1313
- id: black
14-
language_version: python3.7
14+
language_version: python3.11
1515
- repo: https://gitlab.com/pycqa/flake8
1616
rev: 3.7.7
1717
hooks:

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"Intended Audience :: Developers",
3535
"Topic :: Software Development :: Build Tools",
3636
"License :: OSI Approved :: MIT License",
37-
"Programming Language :: Python :: 3.13.0",
37+
"Programming Language :: Python :: 3.11.0",
3838
],
3939
keywords="budgitree scientific exponential notation branch support decimal polytomy polytomies phylogenetic newick tree bifurcating", # Optional
4040
packages=find_packages(exclude=["contrib", "docs", "tests"]), # Required

0 commit comments

Comments
 (0)