Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
T
teqp_fork_old
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Sven Michael Pohl
teqp_fork_old
Commits
88aa1e12
Commit
88aa1e12
authored
3 years ago
by
Ian Bell
Browse files
Options
Downloads
Patches
Plain Diff
Bump version to dev
parent
f342ee01
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
README.md
+1
-0
1 addition, 0 deletions
README.md
buildwheels.py
+1
-1
1 addition, 1 deletion
buildwheels.py
setup.py
+1
-1
1 addition, 1 deletion
setup.py
with
3 additions
and
2 deletions
README.md
+
1
−
0
View file @
88aa1e12
...
@@ -17,6 +17,7 @@ Written by Ian Bell, NIST.
...
@@ -17,6 +17,7 @@ Written by Ian Bell, NIST.
## Changelog
## Changelog
0.
3.0 Add integration options to the tracing of the critical curve; fix
``__version__``
0.
3.0 Add integration options to the tracing of the critical curve; fix
``__version__``
0.
2.0 Add fluid files to the python package
0.
2.0 Add fluid files to the python package
## Install
## Install
...
...
This diff is collapsed.
Click to expand it.
buildwheels.py
+
1
−
1
View file @
88aa1e12
...
@@ -21,8 +21,8 @@ else:
...
@@ -21,8 +21,8 @@ else:
raise
KeyError
(
f
'
You must set the twine environment variable
{
k
}
'
)
raise
KeyError
(
f
'
You must set the twine environment variable
{
k
}
'
)
def
build
():
def
build
():
"""
Build the wheel
"""
for
pyver
in
[
'
3.7
'
,
'
3.8
'
,
'
3.9
'
]:
for
pyver
in
[
'
3.7
'
,
'
3.8
'
,
'
3.9
'
]:
# Build the wheel if it is not already built
abbrv
=
pyver
.
replace
(
'
.
'
,
''
)
abbrv
=
pyver
.
replace
(
'
.
'
,
''
)
condaenv
=
f
'
conda-
{
pyver
}
'
condaenv
=
f
'
conda-
{
pyver
}
'
subprocess
.
check_call
(
f
'
conda create -y -n
{
condaenv
}
python=
{
pyver
}
'
,
shell
=
True
)
subprocess
.
check_call
(
f
'
conda create -y -n
{
condaenv
}
python=
{
pyver
}
'
,
shell
=
True
)
...
...
This diff is collapsed.
Click to expand it.
setup.py
+
1
−
1
View file @
88aa1e12
...
@@ -11,7 +11,7 @@ from setuptools import setup, Extension
...
@@ -11,7 +11,7 @@ from setuptools import setup, Extension
from
setuptools.command.build_ext
import
build_ext
from
setuptools.command.build_ext
import
build_ext
from
distutils.version
import
LooseVersion
from
distutils.version
import
LooseVersion
VERSION
=
'
0.3.
0
'
VERSION
=
'
0.3.
1.dev
'
with
open
(
'
interface/teqpversion.hpp
'
,
'
w
'
)
as
fpver
:
with
open
(
'
interface/teqpversion.hpp
'
,
'
w
'
)
as
fpver
:
fpver
.
write
(
f
'
#include <string>
\n
const std::string TEQPVERSION =
"
{
VERSION
}
"
;
'
)
fpver
.
write
(
f
'
#include <string>
\n
const std::string TEQPVERSION =
"
{
VERSION
}
"
;
'
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment