forked from brown-ccv/hddm-wfpt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from lnccbrown/bump-python-version
Bump python version
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,7 @@ jobs: | |
- name: Build wheels | ||
uses: pypa/[email protected] | ||
env: | ||
CIBW_BUILD: cp39-* cp310-* cp311-* | ||
CIBW_BUILD: cp310-* cp311-* cp312-* | ||
CIBW_ARCHS_MACOS: "x86_64 universal2 arm64" | ||
CIBW_ARCHS_LINUX: auto64 | ||
CIBW_ARCHS_WINDOWS: auto64 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[project] | ||
name = "hddm_wfpt" | ||
version = "0.1.1" | ||
version = "0.1.2" | ||
authors = [ | ||
{ name = "Alexander Fengler", email = "[email protected]" }, | ||
{ name = "Paul Xu", email = "[email protected]" }, | ||
{ name = "Michael Frank", email = "[email protected]" }, | ||
] | ||
description = "HDDM is a python module that implements Hierarchical Bayesian estimation of Drift Diffusion Models." | ||
readme = "Readme.rst" | ||
requires-python = ">=3.9,<3.12" | ||
requires-python = ">=3.10,<3.13" | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Environment :: Console", | ||
|