From 42fab354c9394087b584d22142d2f65d066f4315 Mon Sep 17 00:00:00 2001 From: Lanqing Yuan Date: Sat, 30 Mar 2024 02:06:31 -0500 Subject: [PATCH] bump to alpha --- saltax/__init__.py | 2 +- saltax/instructions/__init__.py | 2 +- saltax/match/__init__.py | 2 +- setup.py | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/saltax/__init__.py b/saltax/__init__.py index a45a2a8..d1a7975 100644 --- a/saltax/__init__.py +++ b/saltax/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.0.0' +__version__ = '0.0.1' from . import instructions from .instructions import * diff --git a/saltax/instructions/__init__.py b/saltax/instructions/__init__.py index 3c506c3..6d6264b 100644 --- a/saltax/instructions/__init__.py +++ b/saltax/instructions/__init__.py @@ -1,3 +1,3 @@ -__version__ = '0.0.0' +__version__ = '0.0.1' from . import generator from .generator import * diff --git a/saltax/match/__init__.py b/saltax/match/__init__.py index 9c26019..a89f2bd 100644 --- a/saltax/match/__init__.py +++ b/saltax/match/__init__.py @@ -1,4 +1,4 @@ -__version__ = '0.0.0' +__version__ = '0.0.1' from . import match from .match import * from . import visual diff --git a/setup.py b/setup.py index 3639008..3292f2a 100644 --- a/setup.py +++ b/setup.py @@ -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',