Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to alpha test #87

Merged
merged 1 commit into from
Mar 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion saltax/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.0.0'
__version__ = '0.0.1'

from . import instructions
from .instructions import *
Expand Down
2 changes: 1 addition & 1 deletion saltax/instructions/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
__version__ = '0.0.0'
__version__ = '0.0.1'
from . import generator
from .generator import *
2 changes: 1 addition & 1 deletion saltax/match/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '0.0.0'
__version__ = '0.0.1'
from . import match
from .match import *
from . import visual
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@
author='Lanqing Yuan',
description='Salting analysis framework for XENONnT.',
long_description=readme,
version='0.0.0',
version='0.0.1',
install_requires=requires,
setup_requires=['pytest-runner'],
tests_require=requires+['pytest',"hypothesis","boltons"],
python_requires=">=3.9",
packages=setuptools.find_packages(),
classifiers=[
'Development Status :: 2 - Pre-Alpha',
'Development Status :: 3 - Alpha',
'License :: MIT License',
'Natural Language :: English',
'Programming Language :: Python :: 3.9',
Expand Down
Loading